summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-03-24 15:47:21 (GMT)
committerGitHub <noreply@github.com>2021-03-24 15:47:21 (GMT)
commit232f4cb6671f1ec5591faabbbbcc599da22781c4 (patch)
treeb7fc01bec76724b646da263a0c4214e6e66f32fb
parent9cb31d671646a5ff0901f79d2d61022621447190 (diff)
downloadcpython-232f4cb6671f1ec5591faabbbbcc599da22781c4.zip
cpython-232f4cb6671f1ec5591faabbbbcc599da22781c4.tar.gz
cpython-232f4cb6671f1ec5591faabbbbcc599da22781c4.tar.bz2
Fix typo in fuzzer.c (GH-25013)
-rw-r--r--Modules/_xxtestfuzz/fuzzer.c4
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();
}