tags 513542 + patch thanks Dear maintainer,
I've prepared an NMU for root-system (versioned as 5.18.00-2.2) and uploaded it to DELAYED/2. Please feel free to tell me if I should delay it longer. Cheers Luk PS: This will need an upload to testing-proposed-updates after this version reaches unstable as pcre3 will be blocking it from migrating to testing.
diff -u root-system-5.18.00/debian/changelog root-system-5.18.00/debian/changelog --- root-system-5.18.00/debian/changelog +++ root-system-5.18.00/debian/changelog @@ -1,3 +1,10 @@ +root-system (5.18.00-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * Return false when X509_REQ_verify returns -1 (Closes: #513542). + + -- Luk Claes <[email protected]> Fri, 06 Feb 2009 14:31:17 +0000 + root-system (5.18.00-2.1) unstable; urgency=low * Non-maintainer upload to fix pending l10n issues. only in patch2: unchanged: --- root-system-5.18.00.orig/xrootd/src/xrootd/src/XrdCrypto/XrdCryptosslX509Req.cc +++ root-system-5.18.00/xrootd/src/xrootd/src/XrdCrypto/XrdCryptosslX509Req.cc @@ -307,5 +307,5 @@ return 0; // Ok: we can verify - return X509_REQ_verify(creq,X509_REQ_get_pubkey(creq)); + return X509_REQ_verify(creq,X509_REQ_get_pubkey(creq)) == -1 ? false : X509_REQ_verify(creq,X509_REQ_get_pubkey(creq)); }

