Hi turtlej0e, I hope you had a good long weekend.
I'm not sure the DV special pool settings were sufficient. It does seem to be another instance of a graphics related object being double freed. The function call in which it crashed is ExFreePoolWithTag and the pool tag was Gpft. Gpft is described as "Gdi font table" so likely another Windows driver. However, the bug check code 0x139 suggests a list structure got corrupted. I suppose the freed memory could have been given to the list after having been previously freed and then the next free corrupted it. I'm not sure, though. Perhaps someone with more experience investigating these problems will have better advice or can glean more information from the dump file but in my mind I'd probably try DV again with special pool on for all drivers, including those from Microsoft. That way no driver can reuse freed memory while special pool is enabled.
edit: It does look like a driver is allocating pool memory with no tag and did so 26 times. I can't tell which driver, though, which is why you're supposed to use a pool tag. It's not necessarily causing the problem, though.
I'm not sure the DV special pool settings were sufficient. It does seem to be another instance of a graphics related object being double freed. The function call in which it crashed is ExFreePoolWithTag and the pool tag was Gpft. Gpft is described as "Gdi font table" so likely another Windows driver. However, the bug check code 0x139 suggests a list structure got corrupted. I suppose the freed memory could have been given to the list after having been previously freed and then the next free corrupted it. I'm not sure, though. Perhaps someone with more experience investigating these problems will have better advice or can glean more information from the dump file but in my mind I'd probably try DV again with special pool on for all drivers, including those from Microsoft. That way no driver can reuse freed memory while special pool is enabled.
edit: It does look like a driver is allocating pool memory with no tag and did so 26 times. I can't tell which driver, though, which is why you're supposed to use a pool tag. It's not necessarily causing the problem, though.