[Pkg-fedora-ds-maintainers] [libapache2-mod-nss] 103/156: Return -1 on a read failure and set the appropriate NSPR error message.

Timo Aaltonen tjaalton-guest at moszumanska.debian.org
Wed Jul 2 13:55:33 UTC 2014


This is an automated email from the git hooks/post-receive script.

tjaalton-guest pushed a commit to branch master
in repository libapache2-mod-nss.

commit 2870f9069b71a44b22e0c1a5dc2d6a098a1f9b0b
Author: rcritten <>
Date:   Thu Feb 19 02:31:18 2009 +0000

    Return -1 on a read failure and set the appropriate NSPR error message.
    
    This bug has lingered for so long since mod_nss wasn't able to be used
    with mod_proxy until now. What one would see with this bug is sometimes
    a page would work, sometimes not (just the headers would be retrieved).
    The problem was we were return 0 which means EOF and was interpreted
    by upper levels to mean the transfer was done rather than no data being
    available.
    
    484380
---
 nss_engine_io.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/nss_engine_io.c b/nss_engine_io.c
index 892f11c..4780aed 100644
--- a/nss_engine_io.c
+++ b/nss_engine_io.c
@@ -259,7 +259,8 @@ nspr_filter_in_read(PRFileDesc *fd, void *in, PRInt32 inlen)
          */
         if (APR_STATUS_IS_EAGAIN(inctx->rc) || APR_STATUS_IS_EINTR(inctx->rc)
                || (inctx->rc == APR_SUCCESS && APR_BRIGADE_EMPTY(inctx->bb))) {
-            return 0;
+            PR_SetError(PR_WOULD_BLOCK_ERROR, 0);
+            return -1;
         }
 
         if (inctx->rc != APR_SUCCESS) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-fedora-ds/libapache2-mod-nss.git



More information about the Pkg-fedora-ds-maintainers mailing list