ucb/source/ucp/gio/gio_content.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit d295e12c3e1e4dbe6000d66f165b655f0afc9447 Author: Caolán McNamara <[email protected]> AuthorDate: Tue Oct 19 10:18:16 2021 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Tue Oct 19 15:27:40 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/+/123779 Tested-by: Jenkins Reviewed-by: Justin Luth <[email protected]> Reviewed-by: Caolán McNamara <[email protected]> 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); } }
