From: Carlos Lopez Date: Mon, 15 Jun 2009 20:48:25 +0000 (+0200) Subject: Remove assert(o) call because this function X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=f8df1636f328f694a2b9c511e6c750ee57162dbe;p=synfig.git Remove assert(o) call because this function is called when importing a SVG file using the png module and the build is in debug mode. --- diff --git a/synfig-core/trunk/src/modules/mod_png/mptr_png.cpp b/synfig-core/trunk/src/modules/mod_png/mptr_png.cpp index ffdc153..19f82f3 100644 --- a/synfig-core/trunk/src/modules/mod_png/mptr_png.cpp +++ b/synfig-core/trunk/src/modules/mod_png/mptr_png.cpp @@ -409,7 +409,7 @@ png_mptr::~png_mptr() bool png_mptr::get_frame(synfig::Surface &surface,Time, synfig::ProgressCallback */*cb*/) { - assert(0); // shouldn't be called? + //assert(0); // shouldn't be called? surface=surface_buffer; return true; }