Skip to content

Commit 18b6f6d

Browse files
Fix NULL argument to strtok (fix #348)
1 parent b49a470 commit 18b6f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/std/string.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ char *strstr(const char *haystack, const char *needle)
4040
__attribute__((nonnull(1, 2)));
4141

4242
char *strtok(char *__restrict s, const char *__restrict delim)
43-
__attribute__((nonnull(1, 2)));
43+
__attribute__((nonnull(2)));
4444

4545
char *strdup(const char *s)
4646
__attribute__ ((__malloc__)) __attribute__((nonnull(1)));

0 commit comments

Comments
 (0)