tweak checks for display list zero
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 3 Jul 2003 03:02:44 +0000 (03:02 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 3 Jul 2003 03:02:44 +0000 (03:02 +0000)
src/mesa/main/dlist.c

index 4399385..8513b45 100644 (file)
@@ -4452,7 +4452,7 @@ execute_list( GLcontext *ctx, GLuint list )
    Node *n;
    GLboolean done;
 
-   if (!islist(ctx,list))
+   if (list == 0 || !islist(ctx,list))
       return;
 
    if (ctx->Driver.BeginCallList)
@@ -5354,6 +5354,11 @@ _mesa_CallList( GLuint list )
    if (MESA_VERBOSE & VERBOSE_API)
       _mesa_debug(ctx, "glCallList %d\n", list); 
 
+   if (list == 0) {
+      _mesa_error(ctx, GL_INVALID_VALUE, "glCallList(list==0)");
+      return;
+   }
+
 /*     mesa_print_display_list( list ); */
 
    save_compile_flag = ctx->CompileFlag;