Marcus Meissner
9c76b4119e
- Beginnings of support for ActiveX in built-in browser. - Icons on Internet shortcut menu entries. - Standardization of code implementing COM interfaces. - New scheme for auto-generated DLL registrations. - OpenCL library wrapper. - Translation updates. - Various bug fixes. - Updated to 1.3.8 development snapshot - Icons in the "open with" menus. - Man pages for all installed binaries. - Support for schemas in MSXML. - Many installer fixes. - Translation updates. - Various bug fixes. - updated winetricks to 20101106 - updated wisotool to 20101106 - Updated to 1.3.7 development snapshot - Improved system tray support. - Better support for installers with assemblies. - Many of the msvcrt "secure" functions implemented. - A lot of fixes to the GStreamer support. - Many MSXML improvements. - Translation updates. - Various bug fixes. OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=74
21 lines
740 B
Diff
21 lines
740 B
Diff
diff --git a/dlls/shell32/pidl.c b/dlls/shell32/pidl.c
|
|
index 266c444..fd28488 100644
|
|
--- a/dlls/shell32/pidl.c
|
|
+++ b/dlls/shell32/pidl.c
|
|
@@ -1753,13 +1753,13 @@ LPITEMIDLIST _ILCreateEntireNetwork(void)
|
|
|
|
TRACE("\n");
|
|
|
|
- pidlOut = _ILAlloc(PT_NETWORK, FIELD_OFFSET(PIDLDATA, u.network.szNames[sizeof("Entire Network")]));
|
|
+ pidlOut = _ILAlloc(PT_NETWORK, FIELD_OFFSET(PIDLDATA, u.network.szNames[strlen("Entire Network")+1]));
|
|
if (pidlOut)
|
|
{
|
|
LPPIDLDATA pData = _ILGetDataPointer(pidlOut);
|
|
|
|
pData->u.network.dummy = 0;
|
|
- strcpy(pData->u.network.szNames, "Entire Network");
|
|
+ memcpy(pData->u.network.szNames, "Entire Network", strlen("Entire Network")+1);
|
|
}
|
|
return pidlOut;
|
|
}
|