Evas filters: Use strtok instead of strtok_r for mingw
authorJean-Philippe Andre <jp.andre@samsung.com>
Wed, 19 Feb 2014 02:05:18 +0000 (11:05 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Wed, 19 Feb 2014 02:30:11 +0000 (11:30 +0900)
The Windows build (mingw) does not know about strtok_r.
So, let's use the non-safe variant strtok instead.
Currently, this function is called from the main thread only,
so this should be fine :)

In the future it would be nice to not use strtok anymore,
but strtok_r everywhere, and add it to evil. Considering the
release coming soon, I'm not going to change something like that
now.

src/lib/evas/filters/evas_filter_parser.c

index d86f5dc528b9b15df012b758e01d97b4882442c2..25b3b1f66999b795f4e9f5570f4a08503ab66f96 100644 (file)
@@ -2184,7 +2184,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 = NULL;
+   char *token, *copy = NULL;
    Buffer *in, *out;
    Eina_Bool parse_ok = EINA_FALSE;
 
@@ -2216,7 +2216,7 @@ _instr2cmd_curve(Evas_Filter_Context *ctx, Evas_Filter_Program *pgm,
 
    if (!points_str) goto interpolated;
    copy = strdup(points_str);
-   token = strtok_r(copy, "-", &saveptr);
+   token = strtok(copy, "-");
    if (!token) goto interpolated;
 
    while (token)
@@ -2228,7 +2228,7 @@ _instr2cmd_curve(Evas_Filter_Context *ctx, Evas_Filter_Program *pgm,
         points[point_count * 2 + 0] = x;
         points[point_count * 2 + 1] = y;
         point_count++;
-        token = strtok_r(NULL, "-", &saveptr);
+        token = strtok(NULL, "-");
      }
 
    parse_ok = evas_filter_interpolate(values, points, point_count, mode);