diff options
author | Werner Lemberg <wl@gnu.org> | 2017-02-28 21:32:06 +0100 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2017-02-28 21:32:06 +0100 |
commit | f870ac63ecb6d8d2c5fb6a7315e0802ee08782e4 (patch) | |
tree | 9e8b2f72adf3a2cc331029d03c2e362ba69cf6c0 /gsoc.html | |
parent | 33c1e802002fcc4f7dede74101c2fbe79ee504ed (diff) |
[gsoc] Minor fix.
Spotted by Nelson H. F. Beebe <beebe@math.utah.edu>.
Diffstat (limited to 'gsoc.html')
-rw-r--r-- | gsoc.html | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -90,7 +90,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size_) { - ParseWhateverFontFileIGet(data, size); + return ParseWhateverFontFileIGet(data, + size); }</pre> <p>Instead of this monolithic approach we should @@ -109,7 +110,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size_) { - ParseOnlyMyFormatAndRejectAnythingElseQuickly(data, size); + return ParseOnlyMyFormatAndRejectAnythingElseQuickly(data, + size); }</pre> <p>Ideally, the build rule for <code>cff_fuzz</code> |