Re: [Mesa-dev] [PATCH 3/3] mesa: validate that sync objects were created by mesa

2012-12-05 Thread Brian Paul
On 12/04/2012 04:55 PM, Jordan Justen wrote: Previously, the user could send in a pointer that was not created by mesa. When we dereferenced that pointer, there would be an exception. Now we keep a set of pointers and verify that the pointer exists in that set before dereferencing it. Note: Thi

[Mesa-dev] [PATCH 3/3] mesa: validate that sync objects were created by mesa

2012-12-04 Thread Jordan Justen
Previously, the user could send in a pointer that was not created by mesa. When we dereferenced that pointer, there would be an exception. Now we keep a set of pointers and verify that the pointer exists in that set before dereferencing it. Note: This fixes several crashing gles3conform tests. S