mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-29 04:04:07 -06:00
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:
parent
eb542976bd
commit
e10c938b27
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user