diff options
author | Noel Power <noel.power@suse.com> | 2012-12-19 15:15:12 +0000 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2012-12-19 17:40:02 +0000 |
commit | 551cd207621be5922c528d32a6b349bcd8b10925 (patch) | |
tree | 0cfa784d3744d3725bed1773b8f3827db72929a0 /basic | |
parent | a6636235e6b6f33f77bee31cd06115b7a0fdeff6 (diff) |
fix crash for fdo#58306 by avoiding literal assign
OUStringBuffer doesn't handler append ( if it had been previously assigned to "" literal )
Change-Id: Ief4379490a4873fbee4117db5833111943b86334
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/step0.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/step0.cxx b/basic/source/runtime/step0.cxx index 412847356af8..5e41425b1748 100644 --- a/basic/source/runtime/step0.cxx +++ b/basic/source/runtime/step0.cxx @@ -1171,7 +1171,7 @@ void SbiRuntime::StepARGV() // is removed afterwards. void SbiRuntime::StepINPUT() { - OUStringBuffer sin = ""; + OUStringBuffer sin; OUString s; char ch = 0; SbError err; |