Searched refs:linksize (Results 1 – 3 of 3) sorted by relevance
| /OK3568_Linux_fs/buildroot/package/curlftpfs/ |
| H A D | 0003-nocache-memleak-fix.patch | 36 int linksize = strlen(reallink); 37 - cache_add_link(full_path, reallink, linksize+1); 40 + cache_add_link(full_path, reallink, linksize+1); 44 if (linksize > linklen) linksize = linklen - 1; 45 strncpy(linkbuf, reallink, linksize);
|
| /OK3568_Linux_fs/app/forlinx/quectelCM/ |
| H A D | main.c | 125 int linksize; in is_same_linkfile() local 128 linksize = readlink(linkname, filename, MAX_PATH); in is_same_linkfile() 129 if (linksize <= 0) in is_same_linkfile() 132 filename[linksize] = 0; in is_same_linkfile() 145 int linksize; in is_brother_process() local 162 linksize = readlink(linkname, filename, MAX_PATH); in is_brother_process() 163 if (linksize <= 0) in is_brother_process() 166 filename[linksize] = 0; in is_brother_process()
|
| /OK3568_Linux_fs/buildroot/boot/grub2/ |
| H A D | 0005-calloc-Use-calloc-at-most-places.patch | 623 if (data->linkname_alloc < linksize + 1) 626 - n = grub_malloc (2 * (linksize + 1)); 627 + n = grub_calloc (2, linksize + 1);
|