1
1

fix memory leak when doing regex code

This commit was SVN r14906.
Этот коммит содержится в:
Brian Barrett 2007-06-06 14:40:28 +00:00
родитель de58336c45
Коммит b4ffc97195

Просмотреть файл

@ -197,6 +197,7 @@ find_options_index(const char *arg)
}
if (0 == regexec(&res, arg, (size_t) 0, NULL, 0)) {
regfree(&res);
return i;
}