22 Jun
2007
22 Jun
'07
12:35 p.m.
Module: wine Branch: master Commit: 717cccb5ce53e49e405e89862f9f84b35037243d URL: http://source.winehq.org/git/wine.git/?a=commit;h=717cccb5ce53e49e405e89862f... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Thu Jun 21 22:57:32 2007 +0200 ole32: Do not use wide character constants. --- dlls/ole32/ole2.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ole32/ole2.c b/dlls/ole32/ole2.c index 3ae9f55..e58385b 100644 --- a/dlls/ole32/ole2.c +++ b/dlls/ole32/ole2.c @@ -2597,7 +2597,7 @@ BSTR WINAPI PropSysAllocString(LPCOLESTR str) * string. */ stringBuffer = (WCHAR*)newBuffer; - stringBuffer[len] = L'\0'; + stringBuffer[len] = '\0'; return (LPWSTR)stringBuffer; }