Skip to content

Commit

Permalink
Fix VS warnings C4701 and C4703; potentially uninitialized local (var…
Browse files Browse the repository at this point in the history
…iable|pointer) used

Signed-off-by: Sven Strickroth <email@cs-ware.de>
  • Loading branch information
csware committed Jun 16, 2024
1 parent 91ef089 commit 318dc98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ec_glob.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ int ec_glob(const char *pattern, const char *string)
pcre2_code * re;
int rc;
size_t * pcre_result;
pcre2_match_data * pcre_match_data;
pcre2_match_data * pcre_match_data = NULL;
char l_pattern[2 * PATTERN_MAX];
_Bool are_braces_paired = 1;
UT_array * nums; /* number ranges */
Expand Down

0 comments on commit 318dc98

Please sign in to comment.