Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 232f4cb

Browse files
authored
Fix typo in fuzzer.c (GH-25013)
1 parent 9cb31d6 commit 232f4cb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_xxtestfuzz/fuzzer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ static int fuzz_csv_reader(const char* data, size_t size) {
354354
return 0;
355355
}
356356
/* Ignore non null-terminated strings since _csv can't handle
357-
embeded nulls */
357+
embedded nulls */
358358
if (memchr(data, '\0', size) == NULL) {
359359
return 0;
360360
}
@@ -383,7 +383,7 @@ static int fuzz_csv_reader(const char* data, size_t size) {
383383
}
384384

385385
/* Ignore csv.Error because we're probably going to generate
386-
some bad files (embeded new-lines, unterminated quotes etc) */
386+
some bad files (embedded new-lines, unterminated quotes etc) */
387387
if (PyErr_ExceptionMatches(csv_error)) {
388388
PyErr_Clear();
389389
}

0 commit comments

Comments
 (0)