]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in fuzzer.c (GH-25013)
authorIkko Ashimine <eltociear@gmail.com>
Wed, 24 Mar 2021 15:47:21 +0000 (00:47 +0900)
committerGitHub <noreply@github.com>
Wed, 24 Mar 2021 15:47:21 +0000 (00:47 +0900)
Modules/_xxtestfuzz/fuzzer.c

index 699f906a6aec126893123a175a70c72fcb3ce515..acbf068637b4eaef8de329dc68a109fe7e769950 100644 (file)
@@ -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();
     }