From 7af999d029f97ccf271fc52c104099136707f786 Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Wed, 9 Apr 2008 08:59:42 +0200 Subject: Whitespace fix. --- stream/filt_faxd.c | 10 +++++----- 1 file 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); -- cgit v1.2.3