diff options
author | Marcus Brinkmann <[email protected]> | 2002-07-25 15:33:03 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-07-25 15:33:03 +0000 |
commit | 4ef64980fb74c82d923d9be595608cfad6d040d4 (patch) | |
tree | f083d8f53ed958a8f6003f534e550e13b908a96e | |
parent | CRASH prevention fix: Memory was overwritten if there were more than 1 email ... (diff) | |
download | gpgme-4ef64980fb74c82d923d9be595608cfad6d040d4.tar.gz gpgme-4ef64980fb74c82d923d9be595608cfad6d040d4.zip |
2002-07-25 Marcus Brinkmann <[email protected]>
* wait.c (fdt_global): Make static. Reported by St�phane
Corth�sy.
Diffstat (limited to '')
-rw-r--r-- | gpgme/ChangeLog | 5 | ||||
-rw-r--r-- | gpgme/wait.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 86df1c7e..50802c57 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,8 @@ +2002-07-25 Marcus Brinkmann <[email protected]> + + * wait.c (fdt_global): Make static. Reported by St�phane + Corth�sy. + 2002-07-03 Marcus Brinkmann <[email protected]> * gpgme.c (gpgme_set_io_cbs): Deal with CTX being NULL. diff --git a/gpgme/wait.c b/gpgme/wait.c index c73f4868..0cb476e6 100644 --- a/gpgme/wait.c +++ b/gpgme/wait.c @@ -35,7 +35,7 @@ #include "io.h" #include "engine.h" -struct fd_table fdt_global; +static struct fd_table fdt_global; static GpgmeCtx *ctx_done_list; static int ctx_done_list_size; |