summaryrefslogtreecommitdiff
path: root/gsoc.html
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2017-02-28 21:32:06 +0100
committerWerner Lemberg <wl@gnu.org>2017-02-28 21:32:06 +0100
commitf870ac63ecb6d8d2c5fb6a7315e0802ee08782e4 (patch)
tree9e8b2f72adf3a2cc331029d03c2e362ba69cf6c0 /gsoc.html
parent33c1e802002fcc4f7dede74101c2fbe79ee504ed (diff)
[gsoc] Minor fix.
Spotted by Nelson H. F. Beebe <beebe@math.utah.edu>.
Diffstat (limited to 'gsoc.html')
-rw-r--r--gsoc.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/gsoc.html b/gsoc.html
index 640263d..b005e0a 100644
--- a/gsoc.html
+++ b/gsoc.html
@@ -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>