summaryrefslogtreecommitdiff
path: root/registry
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-09-05 18:25:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-09-05 20:21:00 +0200
commitaa357e56e8b6185e66ce763ca48fff61fe718bd7 (patch)
treedd2eb3e96e08792665e79d4323d06b33f77b5682 /registry
parent125b3ab3478b615a2391bdbd208c0e3efca1a5d6 (diff)
Improve some OUString to OString conversions
...dropping an intermediary OUString temporary (assuming that way of constructing an OUString temporary from a pointer was not chosen deliberately to cut of the string at a potential embedded NUL). (This change is a prerequisite for making the OUString ctor taking a raw pointer explicit.) Change-Id: I752a0e63b86cb5e3d1a97ede1d855b9602a353c2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102081 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'registry')
-rw-r--r--registry/source/regimpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/registry/source/regimpl.cxx b/registry/source/regimpl.cxx
index f0c8162434d4..60d90faa9c6c 100644
--- a/registry/source/regimpl.cxx
+++ b/registry/source/regimpl.cxx
@@ -1383,7 +1383,7 @@ RegError ORegistry::dumpValue(const OUString& sPath, const OUString& sName, sal_
std::unique_ptr<sal_Unicode[]> value(new sal_Unicode[size]);
readString(aBuffer.data(), value.get(), size);
- OString uStr = OUStringToOString(value.get(), RTL_TEXTENCODING_UTF8);
+ OString uStr(value.get(), rtl_ustr_getLength(value.get()), RTL_TEXTENCODING_UTF8);
fprintf(stdout, "L\"%s\"\n", uStr.getStr());
}
break;
@@ -1498,7 +1498,7 @@ RegError ORegistry::dumpValue(const OUString& sPath, const OUString& sName, sal_
if (offset > 8)
fprintf(stdout, "%s ", indent);
- uStr = OUStringToOString(pValue, RTL_TEXTENCODING_UTF8);
+ uStr = OString(pValue, rtl_ustr_getLength(pValue), RTL_TEXTENCODING_UTF8);
fprintf(
stdout, "%lu = L\"%s\"\n",
sal::static_int_cast< unsigned long >(i),