Should no longer be static now that we strdup it just like all the other

ecore_file functions.


SVN revision: 26844
This commit is contained in:
David Walter Seikel 2006-10-29 01:08:28 +00:00
parent 4a32cf0905
commit abcd2dbe90
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ ecore_file_escape_name(const char *filename)
{
const char *p;
char *q;
static char buf[PATH_MAX];
char buf[PATH_MAX];
p = filename;
q = buf;