Uname:Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64

Base Dir : /home/httpd/vhosts/comeonline.ch/httpdocs

User : onlineadmin


403WebShell
403Webshell
Server IP : 80.74.154.100  /  Your IP : 216.73.217.0
Web Server : Apache
System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
User : onlineadmin ( 10487)
PHP Version : 8.5.7
Disable Function : opcache_get_status
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/httpd/vhosts/comeonline.ch/usr/share/git-core/contrib/coccinelle/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/vhosts/comeonline.ch/usr/share/git-core/contrib/coccinelle/array.cocci
@@
type T;
T *dst_ptr;
T *src_ptr;
expression n;
@@
- memcpy(dst_ptr, src_ptr, (n) * \( sizeof(T)
-                                \| sizeof(*(dst_ptr))
-                                \| sizeof(*(src_ptr))
-                                \| sizeof(dst_ptr[...])
-                                \| sizeof(src_ptr[...])
-                                \) )
+ COPY_ARRAY(dst_ptr, src_ptr, n)

@@
type T;
T *dst_ptr;
T[] src_arr;
expression n;
@@
- memcpy(dst_ptr, src_arr, (n) * \( sizeof(T)
-                                \| sizeof(*(dst_ptr))
-                                \| sizeof(*(src_arr))
-                                \| sizeof(dst_ptr[...])
-                                \| sizeof(src_arr[...])
-                                \) )
+ COPY_ARRAY(dst_ptr, src_arr, n)

@@
type T;
T[] dst_arr;
T *src_ptr;
expression n;
@@
- memcpy(dst_arr, src_ptr, (n) * \( sizeof(T)
-                                \| sizeof(*(dst_arr))
-                                \| sizeof(*(src_ptr))
-                                \| sizeof(dst_arr[...])
-                                \| sizeof(src_ptr[...])
-                                \) )
+ COPY_ARRAY(dst_arr, src_ptr, n)

@@
type T;
T[] dst_arr;
T[] src_arr;
expression n;
@@
- memcpy(dst_arr, src_arr, (n) * \( sizeof(T)
-                                \| sizeof(*(dst_arr))
-                                \| sizeof(*(src_arr))
-                                \| sizeof(dst_arr[...])
-                                \| sizeof(src_arr[...])
-                                \) )
+ COPY_ARRAY(dst_arr, src_arr, n)

@@
type T;
T *dst;
T *src;
expression n;
@@
(
- memmove(dst, src, (n) * sizeof(*dst));
+ MOVE_ARRAY(dst, src, n);
|
- memmove(dst, src, (n) * sizeof(*src));
+ MOVE_ARRAY(dst, src, n);
|
- memmove(dst, src, (n) * sizeof(T));
+ MOVE_ARRAY(dst, src, n);
)

@@
type T;
T *ptr;
expression n;
@@
- ptr = xmalloc((n) * sizeof(*ptr));
+ ALLOC_ARRAY(ptr, n);

@@
type T;
T *ptr;
expression n;
@@
- ptr = xmalloc((n) * sizeof(T));
+ ALLOC_ARRAY(ptr, n);

@@
type T;
T *ptr;
expression n != 1;
@@
- ptr = xcalloc(n, \( sizeof(*ptr) \| sizeof(T) \) )
+ CALLOC_ARRAY(ptr, n)

Youez - 2016 - github.com/yon3zu
LinuXploit