https://bugs.winehq.org/show_bug.cgi?id=41034
--- Comment #20 from Hanno Meyer-Thurow h.mth@web.de --- Just had another look at SetVolumeMountPointW. Does the anonymous struct 'input' need to be freed from heap like that? (HeapFree(GetProcessHeap(), 0, &input);)
Is that Wine specific? Otherwise that struct is on the stack and not on heap, isn't it? Doesn't that cause a silent heap corruption as-is? Or is that call to HeapFree with that address simply ignored?