summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-01-30 08:08:23 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-01-30 08:12:42 -0700
commit2f7c80495250612c88adaa479f7335583dbc3ba2 (patch)
tree20f991305d4506e154dbfa64cb430d7db8c7cdd6
parent80efe27560134510dce88a52729e5a3d93e8e275 (diff)
check if fb->Delete is null (bugs 13507,14293)
-rw-r--r--src/mesa/main/context.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index c793e07b3a..e3096b5f96 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -653,7 +653,12 @@ delete_framebuffer_cb(GLuint id, void *data, void *userData)
*/
/*assert(fb->RefCount == 1);*/
fb->RefCount = 0;
- fb->Delete(fb);
+
+ /* NOTE: Delete should always be defined but there are two reports
+ * of it being NULL (bugs 13507, 14293). Work-around for now.
+ */
+ if (fb->Delete)
+ fb->Delete(fb);
}
/**