Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
git /
contrib /
coccinelle /
Delete
Unzip
Name
Size
Permission
Date
Action
tests
[ DIR ]
drwxr-xr-x
2026-09-04 11:33
README
5.77
KB
-rw-r--r--
2025-11-17 16:38
array.cocci
2.2
KB
-rw-r--r--
2025-11-17 16:38
commit.cocci
1
KB
-rw-r--r--
2025-11-17 16:38
config_fn_ctx.pending.cocci
2.03
KB
-rw-r--r--
2025-11-17 16:38
equals-null.cocci
218
B
-rw-r--r--
2025-11-17 16:38
flex_alloc.cocci
266
B
-rw-r--r--
2025-11-17 16:38
free.cocci
362
B
-rw-r--r--
2025-11-17 16:38
git_config_number.cocci
226
B
-rw-r--r--
2025-11-17 16:38
hashmap.cocci
254
B
-rw-r--r--
2025-11-17 16:38
index-compatibility.cocci
1.79
KB
-rw-r--r--
2025-11-17 16:38
meson.build
1.76
KB
-rw-r--r--
2025-11-17 16:38
object_id.cocci
1.1
KB
-rw-r--r--
2025-11-17 16:38
preincr.cocci
36
B
-rw-r--r--
2025-11-17 16:38
qsort.cocci
610
B
-rw-r--r--
2025-11-17 16:38
refs.cocci
1.5
KB
-rw-r--r--
2025-11-17 16:38
spatchcache
7.29
KB
-rw-r--r--
2025-11-17 16:38
strbuf.cocci
843
B
-rw-r--r--
2025-11-17 16:38
swap.cocci
257
B
-rw-r--r--
2025-11-17 16:38
the_repository.cocci
1.77
KB
-rw-r--r--
2025-11-17 16:38
xcalloc.cocci
96
B
-rw-r--r--
2025-11-17 16:38
xopen.cocci
295
B
-rw-r--r--
2025-11-17 16:38
xstrdup_or_null.cocci
70
B
-rw-r--r--
2025-11-17 16:38
xstrncmpz.cocci
478
B
-rw-r--r--
2025-11-17 16:38
Save
Rename
@ get_fn @ identifier fn, R; @@ ( ( git_config_from_file | git_config_from_file_with_options | git_config_from_mem | git_config_from_blob_oid | read_early_config | read_very_early_config | config_with_options | git_config | git_protected_config | config_from_gitmodules ) (fn, ...) | repo_config(R, fn, ...) ) @ extends get_fn @ identifier C1, C2, D; @@ int fn(const char *C1, const char *C2, + const struct config_context *ctx, void *D); @ extends get_fn @ @@ int fn(const char *, const char *, + const struct config_context *, void *); @ extends get_fn @ // Don't change fns that look like callback fns but aren't identifier fn2 != tar_filter_config && != git_diff_heuristic_config && != git_default_submodule_config && != git_color_config && != bundle_list_update && != parse_object_filter_config; identifier C1, C2, D1, D2, S; attribute name UNUSED; @@ int fn(const char *C1, const char *C2, + const struct config_context *ctx, void *D1) { <+... ( fn2(C1, C2 + , ctx , D2); | if(fn2(C1, C2 + , ctx , D2) < 0) { ... } | return fn2(C1, C2 + , ctx , D2); | S = fn2(C1, C2 + , ctx , D2); ) ...+> } @ extends get_fn@ identifier C1, C2, D; attribute name UNUSED; @@ int fn(const char *C1, const char *C2, + const struct config_context *ctx UNUSED, void *D) {...} // The previous rules don't catch all callbacks, especially if they're defined // in a separate file from the repo_config() call. Fix these manually. @@ identifier C1, C2, D; attribute name UNUSED; @@ int ( git_ident_config | urlmatch_collect_fn | write_one_config | forbid_remote_url | credential_config_callback ) (const char *C1, const char *C2, + const struct config_context *ctx UNUSED, void *D) {...} @@ identifier C1, C2, D, D2, S, fn2; @@ int ( http_options | git_status_config | git_commit_config | git_default_core_config | grep_config ) (const char *C1, const char *C2, + const struct config_context *ctx, void *D) { <+... ( fn2(C1, C2 + , ctx , D2); | if(fn2(C1, C2 + , ctx , D2) < 0) { ... } | return fn2(C1, C2 + , ctx , D2); | S = fn2(C1, C2 + , ctx , D2); ) ...+> }