evas filter - fix uninitialized pointer in evas

fixes CID 1174077
This commit is contained in:
Carsten Haitzler 2014-02-13 19:05:43 +09:00
parent 9232e2befa
commit c7aa6039c8
1 changed files with 1 additions and 1 deletions

View File

@ -2168,7 +2168,7 @@ _instr2cmd_curve(Evas_Filter_Context *ctx, Evas_Filter_Program *pgm,
const char *src, *dst, *points_str, *interpolation, *channel_name;
DATA8 values[256] = {0}, points[512];
int cmdid, point_count = 0;
char *token, *copy = NULL, *saveptr;
char *token, *copy = NULL, *saveptr = NULL;
Buffer *in, *out;
Eina_Bool parse_ok = EINA_FALSE;