diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2008-04-09 08:59:42 +0200 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2008-04-09 08:59:42 +0200 |
commit | 7af999d029f97ccf271fc52c104099136707f786 (patch) | |
tree | c56766c0f68c8de34aa0af2e76374dca7c59f3e3 | |
parent | be2e21fa2c597b8c10609711aabab6805f257bd5 (diff) | |
download | mupdf-7af999d029f97ccf271fc52c104099136707f786.tar.xz |
Whitespace fix.
-rw-r--r-- | stream/filt_faxd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stream/filt_faxd.c b/stream/filt_faxd.c index a94ebac9..fca7114f 100644 --- a/stream/filt_faxd.c +++ b/stream/filt_faxd.c @@ -94,16 +94,16 @@ fz_newfaxd(fz_filter **fp, fz_obj *params) fax->ref = fz_malloc(fax->stride); if (!fax->ref) { - fz_free(fax); - return fz_throw("outofmem: scanline buffer one"); + fz_free(fax); + return fz_throw("outofmem: scanline buffer one"); } fax->dst = fz_malloc(fax->stride); if (!fax->dst) { - fz_free(fax); - fz_free(fax->ref); - return fz_throw("outofmem: scanline buffer two"); + fz_free(fax); + fz_free(fax->ref); + return fz_throw("outofmem: scanline buffer two"); } memset(fax->ref, 0, fax->stride); |