diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gallium/state_trackers/wgl/shared/stw_context.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/gallium/state_trackers/wgl/shared/stw_context.c b/src/gallium/state_trackers/wgl/shared/stw_context.c index 0b5dd78ec6..473e3308c6 100644 --- a/src/gallium/state_trackers/wgl/shared/stw_context.c +++ b/src/gallium/state_trackers/wgl/shared/stw_context.c @@ -276,12 +276,12 @@ stw_get_current_context( void )     struct stw_context *ctx;     if(!glcurctx) -      return NULL; +      return 0;     ctx = (struct stw_context *)glcurctx->DriverCtx;     assert(ctx);     if(!ctx) -      return NULL; +      return 0;     return ctx->hglrc;  } | 
