mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-03-09 20:21:10 +00:00
public: fix Q_memmem counting haystack size incorrectly
This commit is contained in:
parent
409edf5a70
commit
75ccd2283b
@ -382,8 +382,11 @@ const byte *Q_memmem( const byte *haystack, size_t haystacklen, const byte *need
|
||||
if( !memcmp( i, needle, needlelen ))
|
||||
return i;
|
||||
|
||||
// skip one byte
|
||||
i++;
|
||||
|
||||
haystacklen -= i - haystack;
|
||||
haystack = i + 1;
|
||||
haystack = i;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user