[KERNEL32_WINETEST]

- Improve the test_GetVolumePathNamesForVolumeNameW hack to avoid a stack buffer underrun.
CORE-11474

svn path=/trunk/; revision=74377
This commit is contained in:
Thomas Faber 2017-04-19 14:08:51 +00:00
parent 85f31b899e
commit a909a0807a

View file

@ -978,7 +978,8 @@ static void test_GetVolumePathNamesForVolumeNameW(void)
#ifdef __REACTOS__
/* due to failing all calls to GetVolumeNameForVolumeMountPointW, this
* buffer never gets initialized and could cause a buffer overflow later */
volume[0] = 0;
volume[0] = '$';
volume[1] = 0;
#endif /* __REACTOS__ */
if (!pGetVolumePathNamesForVolumeNameW || !pGetVolumeNameForVolumeMountPointW)