fix leak - that string is a const now.

SVN revision: 23649
This commit is contained in:
Carsten Haitzler 2006-07-02 13:14:23 +00:00
parent 334eb3a389
commit 514eb91250
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ ecore_evas_buffer_new(int w, int h)
ee->engine.func = (Ecore_Evas_Engine_Func *)&_ecore_buffer_engine_func;
ee->driver = strdup("buffer");
ee->driver = "buffer";
if (w < 1) w = 1;
if (h < 1) h = 1;