fix uninitialized-variable warning.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12139 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled 2005-12-06 22:06:22 +00:00
parent eb542976bd
commit e10c938b27

View File

@ -4556,7 +4556,7 @@ pcre_compile (const char *pattern, int options, const char **errorptr,
ptr = (const uschar *) (pattern - 1);
while ((c = *(++ptr)) != 0) {
int min, max;
int min = 0, max = 0;
int class_optcount;
int bracket_length;
int duplength;