From: Jay Freeman (saurik) Date: Fri, 14 Sep 2012 14:15:30 +0000 (-0700) Subject: Throw (don't crash) on parsing invalid specific ids. X-Git-Tag: v0.9.460~18 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/506aad766e1ceb92a52895632248c67d4f388c4b Throw (don't crash) on parsing invalid specific ids. --- diff --git a/sig/parse.cpp b/sig/parse.cpp index 51782d2..dfe7d73 100644 --- a/sig/parse.cpp +++ b/sig/parse.cpp @@ -117,7 +117,10 @@ struct Type *Parse_(apr_pool_t *pool, const char **name, char eos, bool named, C if (next == '"') { const char *quote = strchr(*name + 1, '"'); - if (!named || quote[1] == eos || quote[1] == '"') { + if (quote == NULL) { + printf("unterminated specific id type {%s}\n", *name - 10); + _assert(false); + } else if (!named || quote[1] == eos || quote[1] == '"') { type->name = apr_pstrmemdup(pool, *name + 1, quote - *name - 1); *name = quote + 1; }