ucb/source/ucp/gio/gio_content.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 8154131ca8ae47fda4928b56ba622634bae8fe01
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Tue Oct 19 10:18:16 2021 +0100
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Tue Oct 19 12:54:35 2021 +0200

    Related: tdf#145169 append null on unknown property
    
    otherwise the next known property will appear at the skipped unknown
    property, resulting in "true" for IsHidden getting used as "TargetURL"
    
    Change-Id: I0797db9eab94c175b5cc32c66051a1aa35be99c5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123804
    Reviewed-by: Justin Luth <justin_l...@sil.org>
    Tested-by: Caolán McNamara <caol...@redhat.com>

diff --git a/ucb/source/ucp/gio/gio_content.cxx 
b/ucb/source/ucp/gio/gio_content.cxx
index 7278a7956361..1e084d638126 100644
--- a/ucb/source/ucp/gio/gio_content.cxx
+++ b/ucb/source/ucp/gio/gio_content.cxx
@@ -543,6 +543,7 @@ css::uno::Reference< css::sdbc::XRow > 
Content::getPropertyValues(
             SAL_WARN(
                 "ucb.ucp.gio",
                 "Looking for unsupported property " << rProp.Name);
+            xRow->appendVoid(rProp);
         }
     }
 

Reply via email to