* rungpg.c (_gpgme_gpg_op_keylist_ext): Skip empty string
patterns. Reported by St�phane Corth�sy.
* 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 <marcus@g10code.de>
* gpgme.c (gpgme_set_io_cbs): Deal with CTX being NULL.
err = _gpgme_gpg_add_arg (gpg, "--");
if (!err && pattern && *pattern)
{
- while (*pattern)
+ while (*pattern && **pattern)
err = _gpgme_gpg_add_arg (gpg, *(pattern++));
}