From: Marcus Brinkmann Date: Thu, 25 Jul 2002 15:45:40 +0000 (+0000) Subject: 2002-07-25 Marcus Brinkmann X-Git-Tag: gpgme-0-3-9~37 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b4d77023691be863c4e2d31cf9d4cc19b80672b3;p=gpgme.git 2002-07-25 Marcus Brinkmann * rungpg.c (_gpgme_gpg_op_keylist_ext): Skip empty string patterns. Reported by St�phane Corth�sy. --- diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 50802c5..c0c7722 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -3,6 +3,9 @@ * wait.c (fdt_global): Make static. Reported by Stéphane Corthésy. + * rungpg.c (_gpgme_gpg_op_keylist_ext): Skip empty string + patterns. Reported by Stéphane Corthésy. + 2002-07-03 Marcus Brinkmann * gpgme.c (gpgme_set_io_cbs): Deal with CTX being NULL. diff --git a/gpgme/rungpg.c b/gpgme/rungpg.c index f200d08..15115e5 100644 --- a/gpgme/rungpg.c +++ b/gpgme/rungpg.c @@ -1635,7 +1635,7 @@ _gpgme_gpg_op_keylist_ext (GpgObject gpg, const char *pattern[], err = _gpgme_gpg_add_arg (gpg, "--"); if (!err && pattern && *pattern) { - while (*pattern) + while (*pattern && **pattern) err = _gpgme_gpg_add_arg (gpg, *(pattern++)); }