diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-12-07 14:54:19 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-12-07 15:12:31 +0100 |
commit | 5cc574fefc8a2ee39db4a4bd843a3ec67dce2f11 (patch) | |
tree | a79f419fee42dcbfe7b21236d111874a2d67aac3 /desktop/source | |
parent | 2e512174f2116d86682037459fd5ab5164e9f510 (diff) |
tdf#96250 desktop: empty str is the same as 0 str in jsonToPropertyValues()
Change-Id: I77306dc998afc53bb1d5710a8d1ae68717f945d1
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/lib/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index bbe74fc426eb..a9b4d304d10c 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -263,7 +263,7 @@ static OUString getAbsoluteURL(const char* pURL) static void jsonToPropertyValues(const char* pJSON, uno::Sequence<beans::PropertyValue>& rPropertyValues) { std::vector<beans::PropertyValue> aArguments; - if (pJSON) + if (pJSON && pJSON[0] != '\0') { boost::property_tree::ptree aTree; std::stringstream aStream(pJSON); |