diff options
Diffstat (limited to 'ext/gd/libgd/gdhelpers.c')
-rw-r--r-- | ext/gd/libgd/gdhelpers.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/gd/libgd/gdhelpers.c b/ext/gd/libgd/gdhelpers.c index ae2428dfcd..44b79ac77f 100644 --- a/ext/gd/libgd/gdhelpers.c +++ b/ext/gd/libgd/gdhelpers.c @@ -15,7 +15,6 @@ char * gd_strtok_r (char *s, char *sep, char **state) { char separators[256]; - char *start; char *result = 0; memset (separators, 0, sizeof (separators)); while (*sep) @@ -28,7 +27,6 @@ gd_strtok_r (char *s, char *sep, char **state) /* Pick up where we left off */ s = *state; } - start = s; /* 1. EOS */ if (!(*s)) { |