NVIDIA driver bug under WinXP x64

FYI I’ve found very obscure bug in NVIDIA drivers.
It only applies for Win x64 with native x64 exe.
Tested drivers up to 195.62

wglMakeCurrent crashes when you allocate 2GB by small chunks before. If you allocate one big chunk of memory, then wglMakeCurrent works well.

It looks like the driver simply allocates some memory. When the pointer is > 2GB then it fails (probably casting to 32bit integer).

The reason why it does not fail when allocating 2GB in one call is that there is simple enough small free blocks at address < 2GB that can be used for driver allocation.

ATI drivers are OK.

100 lines C++ repro case available on request.

Are there any ways to force NV to fix it?

> Are there any ways to force NV to fix it?

No :slight_smile: But if you email me your repro case, we’ll take a look.

Barthold
(with my NVIDIA hat on)

Email sent, thank you!

SOLVED!

I’d like to thank Barthold Lichtenbelt and NVIDIA driver team to find and fix the problem.

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.