From d4bfba5ef03ba5bd73069cf482d54ed02c8fe2aa Mon Sep 17 00:00:00 2001 From: Jaime Thomas Date: Sun, 5 Oct 2008 20:41:42 +0000 Subject: [PATCH] Small fix from pfritz. --- ecdb/trunk/src/ecdb_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecdb/trunk/src/ecdb_misc.c b/ecdb/trunk/src/ecdb_misc.c index ed4de19..1bd572b 100644 --- a/ecdb/trunk/src/ecdb_misc.c +++ b/ecdb/trunk/src/ecdb_misc.c @@ -135,7 +135,7 @@ ecdb_strip_next_argument(const char *strip) memcpy(ret, t1, len); return ret; } - } while ((t1) && (t1++)); + } while (*(t1++)); return NULL; }