|
From: Kaido K. <ka...@tr...> - 2008-08-26 19:39:23
|
Hi!
to quick-fix the assert I used the following approach:
first, in via_context.c in viaDestroyContent() mark the buffer as NULL just before the vmesa is freed.
__DRIdrawablePrivate *const drawable = vmesa->driDrawable;
if (drawable) {
drawable->driverPrivate = NULL;
}
second, in via_screen.c in viaDestroyBuffer() check if driDrawPriv->driverPrivate is not NULL before acessing it.
works for me.
regards,
kaido
|