Small fix from pfritz.

This commit is contained in:
Jaime Thomas 2008-10-05 20:41:42 +00:00
parent e586a2ddd9
commit c9bbd5c6b0
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ ecdb_strip_next_argument(const char *strip)
memcpy(ret, t1, len);
return ret;
}
} while ((t1) && (t1++));
} while (*(t1++));
return NULL;
}