mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 22:45:34 +00:00
Merge remote branch 'corristo/master'
This commit is contained in:
commit
12b7c6f1ac
1 changed files with 4 additions and 4 deletions
|
@ -21,10 +21,10 @@ static size_t mw_strnlen(const char *s, size_t n)
|
|||
if (strnlen != NULL) {
|
||||
return strnlen(s, n);
|
||||
}
|
||||
else {
|
||||
const char *p = (const char *)memchr(s, 0, n);
|
||||
return(p ? p-s : n);
|
||||
}
|
||||
else {
|
||||
const char *p = (const char *)memchr(s, 0, n);
|
||||
return(p ? p-s : n);
|
||||
}
|
||||
}
|
||||
#define strnlen mw_strnlen
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue