[Libreoffice-commits] core.git: sdext/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Nov 8 14:11:57 UTC 2018


 sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit e3ca8385fed93e61efb8200149e06b822a84a47e
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Nov 8 10:58:00 2018 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Nov 8 15:09:59 2018 +0100

    Resolves: rhbz#1647507 try inputted password as both user and owner password
    
    Change-Id: Ibe1fae39d3153238e85400c9645766c260c9290d
    Reviewed-on: https://gerrit.libreoffice.org/63080
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
index 28334dac56d8..0f4a35b77ac5 100644
--- a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
+++ b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
@@ -101,9 +101,11 @@ int main(int argc, char **argv)
                                  : (ownerPassword[0] != '\001'
                                     ? new GooString(ownerPassword)
                                     : nullptr ) );
-    GooString* pUserPasswordStr(  userPassword[0] != '\001'
+    GooString* pUserPasswordStr( aPwBuf[0] != 0
+                                ? new GooString( aPwBuf )
+                                : (userPassword[0] != '\001'
                                   ? new GooString(userPassword)
-                                  : nullptr );
+                                  : nullptr ) );
     if( outputFile[0] != '\001' )
         g_binary_out = fopen(outputFile,"wb");
 


More information about the Libreoffice-commits mailing list