From: Marcus Brinkmann Date: Mon, 2 Sep 2002 12:29:53 +0000 (+0000) Subject: 2002-09-02 Marcus Brinkmann X-Git-Tag: gpgme-0-3-11~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1b40ede2c5ac48419c2f8cfa8aaa7ea239541ca1;p=gpgme.git 2002-09-02 Marcus Brinkmann * debug.c (_gpgme_debug_add): Test *LINE, not LINE. (_gpgme_debug_end): Likewise. Reported by Dr. Stefan Dalibor . --- diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index fbcc9cd..1f3cbed 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,9 @@ +2002-09-02 Marcus Brinkmann + + * debug.c (_gpgme_debug_add): Test *LINE, not LINE. + (_gpgme_debug_end): Likewise. + Reported by Dr. Stefan Dalibor . + 2002-09-02 Marcus Brinkmann * posix-io.c (_gpgme_io_select): Don't use a non-constant struct diff --git a/gpgme/debug.c b/gpgme/debug.c index 06ab1bc..e0c7d89 100644 --- a/gpgme/debug.c +++ b/gpgme/debug.c @@ -180,7 +180,7 @@ _gpgme_debug_add (void **line, const char *format, ...) char *toadd; char *result; - if (!line) + if (!*line) return; va_start (arg_ptr, format); @@ -198,7 +198,7 @@ _gpgme_debug_add (void **line, const char *format, ...) void _gpgme_debug_end (void **line) { - if (!line) + if (!*line) return; /* The smallest possible level is 1, so force logging here by