diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2021-03-24 15:47:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 15:47:21 (GMT) |
commit | 232f4cb6671f1ec5591faabbbbcc599da22781c4 (patch) | |
tree | b7fc01bec76724b646da263a0c4214e6e66f32fb | |
parent | 9cb31d671646a5ff0901f79d2d61022621447190 (diff) | |
download | cpython-232f4cb6671f1ec5591faabbbbcc599da22781c4.zip cpython-232f4cb6671f1ec5591faabbbbcc599da22781c4.tar.gz cpython-232f4cb6671f1ec5591faabbbbcc599da22781c4.tar.bz2 |
Fix typo in fuzzer.c (GH-25013)
-rw-r--r-- | Modules/_xxtestfuzz/fuzzer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_xxtestfuzz/fuzzer.c b/Modules/_xxtestfuzz/fuzzer.c index 699f906..acbf068 100644 --- a/Modules/_xxtestfuzz/fuzzer.c +++ b/Modules/_xxtestfuzz/fuzzer.c @@ -354,7 +354,7 @@ static int fuzz_csv_reader(const char* data, size_t size) { return 0; } /* Ignore non null-terminated strings since _csv can't handle - embeded nulls */ + embedded nulls */ if (memchr(data, '\0', size) == NULL) { return 0; } @@ -383,7 +383,7 @@ static int fuzz_csv_reader(const char* data, size_t size) { } /* Ignore csv.Error because we're probably going to generate - some bad files (embeded new-lines, unterminated quotes etc) */ + some bad files (embedded new-lines, unterminated quotes etc) */ if (PyErr_ExceptionMatches(csv_error)) { PyErr_Clear(); } |