[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sc/source

Mike Kaganski (via logerrit) logerrit at kemper.freedesktop.org
Sat May 22 06:33:45 UTC 2021


 sc/source/ui/docshell/impex.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c55f64f1f4bcd37f071225c8fedca4265f2a59e3
Author:     Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Fri May 21 00:03:43 2021 +0200
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Sat May 22 08:33:07 2021 +0200

    tdf#142395: properly handle "no string delimiter" case
    
    In this case, the delimiter character value would be '\0'.
    
    Change-Id: Idb0f01756991b3ea35a92f11b78fddd56c25265a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115839
    Tested-by: Jenkins
    Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>
    (cherry picked from commit 6155689bb6f1d72f29b43ac5ae94b32522ef9b42)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115851
    Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>

diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx
index 4db43588af50..43d77256a08a 100644
--- a/sc/source/ui/docshell/impex.cxx
+++ b/sc/source/ui/docshell/impex.cxx
@@ -1553,7 +1553,7 @@ const sal_Unicode* ScImportExport::ScanNextFieldFromString( const sal_Unicode* p
     rbIsQuoted = false;
     rField.clear();
     const sal_Unicode cBlank = ' ';
-    if (!ScGlobal::UnicodeStrChr( pSeps, cBlank))
+    if (cStr && !ScGlobal::UnicodeStrChr(pSeps, cBlank))
     {
         // Cope with broken generators that put leading blanks before a quoted
         // field, like "field1", "field2", "..."
@@ -1564,7 +1564,7 @@ const sal_Unicode* ScImportExport::ScanNextFieldFromString( const sal_Unicode* p
         if (*pb == cStr)
             p = pb;
     }
-    if ( *p == cStr )           // String in quotes
+    if (cStr && *p == cStr) // String in quotes
     {
         rbIsQuoted = true;
         const sal_Unicode* p1;


More information about the Libreoffice-commits mailing list