Merge branch '2.1' into 2.2

This commit is contained in:
Markus Mäkelä
2017-10-30 11:01:19 +02:00
10 changed files with 91 additions and 107 deletions

View File

@ -569,7 +569,7 @@ int extract_type_length(const char* ptr, char *dest)
/** Skip characters until we either hit a whitespace character or the start
* of the length definition. */
while (*ptr && !isspace(*ptr) && *ptr != '(')
while (*ptr && isalpha(*ptr))
{
ptr++;
}