Commit 321ba15a authored by Sterling Hughes's avatar Sterling Hughes
Browse files

we should be using start here.

parent 9e5dfc15
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ Curl_strtok_r(char *ptr, const char *sep, char **end)
    char *start = ptr;

    /* set the end pointer to the first byte after the start */
    *end = ptr + 1;
    *end = start + 1;

    /* scan through the string to find where it ends, it ends on a
       null byte or a character that exists in the separator string */