diff options
author | Werner Koch <[email protected]> | 2001-12-13 17:37:04 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2001-12-13 17:37:04 +0000 |
commit | b41d06c0a1fdfbf42c12ad7e32a9ee4ba553f7e2 (patch) | |
tree | d97795e0cb734da960f885c0298ce2ef10f95f6a | |
parent | improce memory handling (diff) | |
download | gpgme-b41d06c0a1fdfbf42c12ad7e32a9ee4ba553f7e2.tar.gz gpgme-b41d06c0a1fdfbf42c12ad7e32a9ee4ba553f7e2.zip |
* assuan-handler.c (assuan_get_active_fds): Fixed silly bug,
pretty obvious that nobody ever tested this function.
-rw-r--r-- | assuan/ChangeLog | 5 | ||||
-rw-r--r-- | assuan/assuan-handler.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/assuan/ChangeLog b/assuan/ChangeLog index 9b08c2b4..0c8a4df6 100644 --- a/assuan/ChangeLog +++ b/assuan/ChangeLog @@ -1,3 +1,8 @@ +2001-12-13 Werner Koch <[email protected]> + + * assuan-handler.c (assuan_get_active_fds): Fixed silly bug, + pretty obvious that nobody ever tested this function. + 2001-12-12 Werner Koch <[email protected]> * assuan-connect.c (assuan_pipe_connect): Implemented the inital diff --git a/assuan/assuan-handler.c b/assuan/assuan-handler.c index ff8024aa..614f83d8 100644 --- a/assuan/assuan-handler.c +++ b/assuan/assuan-handler.c @@ -471,7 +471,7 @@ assuan_get_active_fds (ASSUAN_CONTEXT ctx, int what, { int n = 0; - if (ctx || fdarraysize < 2 || what < 0 || what > 1) + if (!ctx || fdarraysize < 2 || what < 0 || what > 1) return -1; if (!what) |