From ae3fc622f35e889d4fd52c83f79f3f943a3a6043 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Tue, 23 Mar 2010 21:53:33 +0000 Subject: [PATCH] * client_read_blob() don't swallow errorstates. --- citadel/sysdep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/citadel/sysdep.c b/citadel/sysdep.c index 36e10e804..1fba5ebd3 100644 --- a/citadel/sysdep.c +++ b/citadel/sysdep.c @@ -587,9 +587,9 @@ int client_read_blob(StrBuf *Target, int bytes, int timeout) &Error); if (retval < 0) { CtdlLogPrintf(CTDL_CRIT, - "%s failed: %s\n", - __FUNCTION__, - Error); + "%s failed\n", + __FUNCTION__); + return -1; } else { -- 2.30.2