microsoft / Windows-classic-samples

This repo contains samples that demonstrate the API used in Windows classic desktop applications.
Other
5.1k stars 3.23k forks source link

x64 runtime crash issue with WicAnimatedGif sample #255

Open smourier opened 2 years ago

smourier commented 2 years ago

We can compile the https://github.com/microsoft/Windows-classic-samples/blob/main/Samples/Win7Samples/multimedia/wic/wicanimatedgif sample successfully but it crashes at execution here:

https://github.com/microsoft/Windows-classic-samples/blob/main/Samples/Win7Samples/multimedia/wic/wicanimatedgif/WicAnimatedGif.cpp#L445

SetWindowLongPtr(hWnd, GWLP_USERDATA, PtrToUlong(pThis));

I think this line should be replaced by

SetWindowLongPtr(hWnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(pThis));

which compiles and runs fine.