diff options
author | Brian <[email protected]> | 2007-03-15 11:11:41 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-15 11:11:41 -0600 |
commit | 038e981cacdc6f32588442666cde8a8fc16cfdfc (patch) | |
tree | 71844bf1a11ecfcc4d58e097766f5f3980aa3093 /src/mesa/swrast/s_depth.c | |
parent | 90563d39cbdae552f498285125381c8c8ccb2f83 (diff) |
add some rb->Data null ptr checks (bug 7205)
Diffstat (limited to 'src/mesa/swrast/s_depth.c')
-rw-r--r-- | src/mesa/swrast/s_depth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_depth.c b/src/mesa/swrast/s_depth.c index 408174c990f..dde2b1db83a 100644 --- a/src/mesa/swrast/s_depth.c +++ b/src/mesa/swrast/s_depth.c @@ -1350,7 +1350,7 @@ _swrast_clear_depth_buffer( GLcontext *ctx, struct gl_renderbuffer *rb ) GLuint clearValue; GLint x, y, width, height; - if (!rb || !ctx->Depth.Mask) { + if (!rb || !ctx->Depth.Mask || !rb->Data) { /* no depth buffer, or writing to it is disabled */ return; } |