Merge pull request #748 from b1gr3db/dev

Regression fix
This commit is contained in:
van Hauser 2021-02-16 17:52:44 +01:00 committed by GitHub
commit 7444cfa450
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,7 +271,7 @@ void *__libqasan_memmem(const void *haystack, size_t haystack_len,
}
} while (h++ <= end);
} while (++h <= end);
return 0;