Do not do RTL_LOG_STRING_NEW on null pointer
Change-Id: Ie972599650620324fa7af5ed2b2843bfc1f34c43
This commit is contained in:
parent
3df1b8927a
commit
ff5a48439c
1 changed files with 2 additions and 2 deletions
|
@ -493,9 +493,9 @@ void SAL_CALL rtl_uString_newFromAscii( rtl_uString** ppThis,
|
||||||
pCharStr++;
|
pCharStr++;
|
||||||
}
|
}
|
||||||
while ( *pCharStr );
|
while ( *pCharStr );
|
||||||
}
|
|
||||||
|
|
||||||
RTL_LOG_STRING_NEW( *ppThis );
|
RTL_LOG_STRING_NEW( *ppThis );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SAL_CALL rtl_uString_newFromCodePoints(
|
void SAL_CALL rtl_uString_newFromCodePoints(
|
||||||
|
|
Loading…
Reference in a new issue