[git] GPA - branch, master, updated. gpa-0.9.2-5-g510f7f1
by Werner Koch
cvs at cvs.gnupg.org
Wed Jul 18 15:38:03 CEST 2012
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Assistant".
The branch, master has been updated
via 510f7f1195086530043b748c83b982169b63597e (commit)
from c062aa82e4fa18ebaf4aaf38a963acb976aa74ad (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 510f7f1195086530043b748c83b982169b63597e
Author: Werner Koch <wk at gnupg.org>
Date: Wed Jul 18 14:22:26 2012 +0200
Fix uninitialized variable (bug#1416)
* src/server.c (prepare_io_streams): Set ERR to 0 on success.
Reported by Daniel Leidert.
diff --git a/src/server.c b/src/server.c
index 4f39167..ee4ec8f 100644
--- a/src/server.c
+++ b/src/server.c
@@ -544,6 +544,8 @@ prepare_io_streams (assuan_context_t ctx,
goto leave;
}
+ err = 0;
+
leave:
if (err)
finish_io_streams (ctx, r_input_data, r_output_data, r_message_data);
-----------------------------------------------------------------------
Summary of changes:
src/server.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
hooks/post-receive
--
The GNU Privacy Assistant
http://git.gnupg.org
More information about the Gnupg-commits
mailing list