gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog gui/sdl_agg_glue.cpp


From: Bastiaan Jacques
Subject: [Gnash-commit] gnash ChangeLog gui/sdl_agg_glue.cpp
Date: Mon, 16 Oct 2006 15:37:28 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Bastiaan Jacques <bjacques>     06/10/16 15:37:27

Modified files:
        .              : ChangeLog 
        gui            : sdl_agg_glue.cpp 

Log message:
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not call free() on a operator new-allocated buffer.
        I will not c...

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1241&r2=1.1242
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/sdl_agg_glue.cpp?cvsroot=gnash&r1=1.1&r2=1.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1241
retrieving revision 1.1242
diff -u -b -r1.1241 -r1.1242
--- ChangeLog   16 Oct 2006 15:27:53 -0000      1.1241
+++ ChangeLog   16 Oct 2006 15:37:27 -0000      1.1242
@@ -74,6 +74,8 @@
        glues must decide if a bit depths is appriopriate and signal the user
        if necessary.
        * gui/sdl_cairo_glue{.cpp, .h}: Remove OpenGL code.
+       * gui/sdl_agg_glue.cpp: Don't call free() on a operator new-allocated
+       buffer.
 
 2006-10-16 Markus Gothe <address@hidden>
 

Index: gui/sdl_agg_glue.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/sdl_agg_glue.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- gui/sdl_agg_glue.cpp        16 Oct 2006 15:27:53 -0000      1.1
+++ gui/sdl_agg_glue.cpp        16 Oct 2006 15:37:27 -0000      1.2
@@ -58,7 +58,7 @@
 //    GNASH_REPORT_FUNCTION;
     SDL_FreeSurface(_sdl_surface);
     SDL_FreeSurface(_screen);
-    free(_offscreenbuf);
+    delete [] _offscreenbuf;
 }
 
 bool




reply via email to

[Prev in Thread] Current Thread [Next in Thread]