diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-22 21:26:51 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-22 21:26:51 +0000 |
commit | 3c8299c77967611db138169c56a7c6a1c0086d1c (patch) | |
tree | bf237d5b4a51fcbdb6a1625f244e70e612727404 /src | |
parent | 2af2c2b556bbac7d2d6bab416af14aecef594eea (diff) |
Added FREE(depth) in error clause before return
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/image.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 627ab1510e..c695bd85be 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -1,4 +1,4 @@ -/* $Id: image.c,v 1.32 2000/05/19 22:35:44 brianp Exp $ */ +/* $Id: image.c,v 1.33 2000/06/22 21:26:51 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -2995,6 +2995,7 @@ _mesa_unpack_depth_span( const GLcontext *ctx, GLuint n, GLdepth *dest, break; default: gl_problem(NULL, "bad type in _mesa_unpack_depth_span()"); + FREE(depth); return; } |