Fixed System plugin GUID type output bug on Win98
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6625 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
70ef520055
commit
37c81f74f8
2 changed files with 3 additions and 1 deletions
|
@ -1063,7 +1063,7 @@ void ParamsOut(SystemProc *proc)
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
WCHAR guidstrbuf[39];
|
WCHAR guidstrbuf[39];
|
||||||
int guidcch = StringFromGUID2(*((REFGUID*)place), guidstrbuf, g_stringsize);
|
int guidcch = StringFromGUID2(*((REFGUID*)place), guidstrbuf, 39);
|
||||||
WideCharToMultiByte(CP_ACP, 0, guidstrbuf, guidcch, realbuf, g_stringsize, NULL, NULL);
|
WideCharToMultiByte(CP_ACP, 0, guidstrbuf, guidcch, realbuf, g_stringsize, NULL, NULL);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -12,6 +12,8 @@ Released on ? ?th, 201?
|
||||||
|
|
||||||
\S2{} Minor Changes
|
\S2{} Minor Changes
|
||||||
|
|
||||||
|
\b Fixed System plugin GUID type output bug on Win98
|
||||||
|
|
||||||
\b !system and !execute now provide a empty StdIn pipe to work around bugs in some Windows utilities
|
\b !system and !execute now provide a empty StdIn pipe to work around bugs in some Windows utilities
|
||||||
|
|
||||||
\b MakeNSISW now uses WinInet when checking for updates
|
\b MakeNSISW now uses WinInet when checking for updates
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue