[poppler] poppler/SecurityHandler.cc

Albert Astals Cid aacid at kemper.freedesktop.org
Sun Aug 5 06:10:15 PDT 2012


 poppler/SecurityHandler.cc |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit a53e0641365608f832b455404f1ee584d278e0c4
Author: Albert Astals Cid <aacid at kde.org>
Date:   Sun Aug 5 15:07:16 2012 +0200

    If NULL, NULL fails as password try EMPTY, EMPTY before failing
    
    Reviewed by Jose Aliste
    Bug #3498

diff --git a/poppler/SecurityHandler.cc b/poppler/SecurityHandler.cc
index 00c4ae1..a48449a 100644
--- a/poppler/SecurityHandler.cc
+++ b/poppler/SecurityHandler.cc
@@ -105,7 +105,12 @@ GBool SecurityHandler::checkEncryption(GooString *ownerPassword,
     }
   }
   if (!ok) {
-    error(errCommandLine, -1, "Incorrect password");
+    if (!ownerPassword && !userPassword) {
+      GooString dummy;
+      return checkEncryption(&dummy, &dummy);
+    } else {
+      error(errCommandLine, -1, "Incorrect password");
+    }
   }
   return ok;
 }


More information about the poppler mailing list