Kaydet (Commit) 551cd207 authored tarafından Noel Power's avatar Noel Power

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
üst a6636235
...@@ -1171,7 +1171,7 @@ void SbiRuntime::StepARGV() ...@@ -1171,7 +1171,7 @@ void SbiRuntime::StepARGV()
// is removed afterwards. // is removed afterwards.
void SbiRuntime::StepINPUT() void SbiRuntime::StepINPUT()
{ {
OUStringBuffer sin = ""; OUStringBuffer sin;
OUString s; OUString s;
char ch = 0; char ch = 0;
SbError err; SbError err;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment