diff options
author | Brian Paul <[email protected]> | 2000-08-29 18:57:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-08-29 18:57:58 +0000 |
commit | 8aee2a3326a5a634df865c50b9f2331744a4c6fc (patch) | |
tree | 53d13feab62e2846fabd3e2feb7f558a89fedfcc | |
parent | ef9025a641624991113b7df2eecdf7c8e330a31c (diff) |
don't free ctx inside _mesa_initialize_context() if error, caller does that.
-rw-r--r-- | src/mesa/main/context.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 9933076797d..ce1cb447ab5 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.80 2000/08/21 14:22:24 brianp Exp $ */ +/* $Id: context.c,v 1.81 2000/08/29 18:57:58 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1376,7 +1376,8 @@ alloc_proxy_textures( GLcontext *ctx ) /* - * Initialize a GLcontext struct. + * Initialize a GLcontext struct. This includes allocating all the + * other structs and arrays which hang off of the context by pointers. */ GLboolean _mesa_initialize_context( GLcontext *ctx, @@ -1399,7 +1400,6 @@ _mesa_initialize_context( GLcontext *ctx, ctx->VB = gl_vb_create_for_immediate( ctx ); if (!ctx->VB) { - FREE( ctx ); return GL_FALSE; } ctx->input = ctx->VB->IM; @@ -1407,7 +1407,6 @@ _mesa_initialize_context( GLcontext *ctx, ctx->PB = gl_alloc_pb(); if (!ctx->PB) { ALIGN_FREE( ctx->VB ); - FREE( ctx ); return GL_FALSE; } @@ -1421,7 +1420,6 @@ _mesa_initialize_context( GLcontext *ctx, if (!ctx->Shared) { ALIGN_FREE( ctx->VB ); FREE( ctx->PB ); - FREE( ctx ); return GL_FALSE; } } @@ -1453,7 +1451,6 @@ _mesa_initialize_context( GLcontext *ctx, free_shared_state(ctx, ctx->Shared); ALIGN_FREE( ctx->VB ); FREE( ctx->PB ); - FREE( ctx ); return GL_FALSE; } @@ -1484,7 +1481,6 @@ _mesa_initialize_context( GLcontext *ctx, FREE( ctx->PB ); if (ctx->Exec) FREE( ctx->Exec ); - FREE( ctx ); } _mesa_init_exec_table(ctx->Exec, dispatchSize); _mesa_init_dlist_table(ctx->Save, dispatchSize); |