slibc icon indicating copy to clipboard operation
slibc copied to clipboard

Yet another C standard library

Results 2 slibc issues
Sort by recently updated
recently updated
newest added

Hi, Although this project seems inactive, I felt it would be a good idea to bring this up anyway. There are two security problems with the `wcsndup()` function as implemented...

it must not compute `strlen(haystack)` ``` c char haystack[] = { 'A', 'A', ...... 10GB ...... 'A', 0 }, needle[] = { 'A', 0 }; char *ptr = strstr(haystack, needle);...