diff options
author | Philippe Houdoin <[email protected]> | 2004-10-13 01:17:52 +0000 |
---|---|---|
committer | Philippe Houdoin <[email protected]> | 2004-10-13 01:17:52 +0000 |
commit | d334067193271f366b54836e8f50c7d145a7dee0 (patch) | |
tree | 1f888e5b297b63f1796b4cfc1999b206352c398b | |
parent | fd7f62a50899ee385d5f2158941ab90cec7f9645 (diff) |
Fix a potential memory leak.
-rw-r--r-- | src/mesa/drivers/beos/GLView.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/beos/GLView.cpp b/src/mesa/drivers/beos/GLView.cpp index 8efbcfdbac8..7426b492bc2 100644 --- a/src/mesa/drivers/beos/GLView.cpp +++ b/src/mesa/drivers/beos/GLView.cpp @@ -663,7 +663,8 @@ MesaDriver::~MesaDriver() _mesa_destroy_visual(m_glvisual); _mesa_destroy_framebuffer(m_glframebuffer); _mesa_destroy_context(m_glcontext); - + + delete m_bitmap; } |