This code is based on oniguruma,a opensource regular expression project. So I want to keep the origin code as much as possible.And I distinguish my changing by comment them out instead of removing. Actually the function is unused.
Thanks, Dongao. -----Original Message----- From: edk2-devel [mailto:[email protected]] On Behalf Of Gary Lin Sent: Monday, October 8, 2018 5:52 PM To: Guo, Dongao <[email protected]> Cc: [email protected]; Gao, Liming <[email protected]> Subject: Re: [edk2] [PATCH] MdeModulePkg/RegularExpressionDxe:omit unused variable On Mon, Oct 08, 2018 at 03:56:48PM +0800, Dongao Guo wrote: > > comment unused variable to avoid warning,and modify inf build option. > Why not just remove the variables altogether instead of commenting them out? Is it on purpose? Gary Lin > Cc: Liming Gao <[email protected]> > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Dongao Guo <[email protected]> > --- > .../RegularExpressionDxe/Oniguruma/regexec.c | 28 > +++++++++++----------- > .../RegularExpressionDxe/RegularExpressionDxe.inf | 3 --- > 2 files changed, 14 insertions(+), 17 deletions(-) > > diff --git > a/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/regexec.c > b/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/regexec.c > index 7b0fda0..26e7a31 100644 > --- a/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/regexec.c > +++ b/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/regexec.c > @@ -5603,11 +5603,11 @@ onig_builtin_monitor(OnigCalloutArgs* args, void* > user_data) > int r; > int num; > size_t tag_len; > - const UChar* start; > - const UChar* right; > - const UChar* current; > - const UChar* string; > - const UChar* strend; > + // const UChar* start; > + // const UChar* right; > + // const UChar* current; > + // const UChar* string; > + // const UChar* strend; > const UChar* tag_start; > const UChar* tag_end; > regex_t* reg; > @@ -5615,9 +5615,9 @@ onig_builtin_monitor(OnigCalloutArgs* args, void* > user_data) > OnigType type; > OnigValue val; > char buf[20]; > - FILE* fp; > + // FILE* fp; > > - fp = OutFp; > + // fp = OutFp; > > r = onig_get_arg_by_callout_args(args, 0, &type, &val); > if (r != ONIG_NORMAL) return r; > @@ -5633,11 +5633,11 @@ onig_builtin_monitor(OnigCalloutArgs* args, void* > user_data) > } > > num = onig_get_callout_num_by_callout_args(args); > - start = onig_get_start_by_callout_args(args); > - right = onig_get_right_range_by_callout_args(args); > - current = onig_get_current_by_callout_args(args); > - string = onig_get_string_by_callout_args(args); > - strend = onig_get_string_end_by_callout_args(args); > + // start = onig_get_start_by_callout_args(args); > + // right = onig_get_right_range_by_callout_args(args); > + // current = onig_get_current_by_callout_args(args); > + // string = onig_get_string_by_callout_args(args); > + // strend = onig_get_string_end_by_callout_args(args); > reg = onig_get_regex_by_callout_args(args); > tag_start = onig_get_callout_tag_start(reg, num); > tag_end = onig_get_callout_tag_end(reg, num); > @@ -5653,7 +5653,7 @@ onig_builtin_monitor(OnigCalloutArgs* args, void* > user_data) > for (i = 0; i < tag_len; i++) buf[i] = tag_start[i]; > buf[tag_len] = '\0'; > } > - > +/* > fprintf(fp, "ONIG-MONITOR: %-4s %s at: %d [%d - %d] len: %d\n", > buf, > in == ONIG_CALLOUT_IN_PROGRESS ? "=>" : "<=", @@ -5662,7 > +5662,7 @@ onig_builtin_monitor(OnigCalloutArgs* args, void* user_data) > (int )(right - string), > (int )(strend - string)); > //fflush(fp); > - > +*/ > return ONIG_CALLOUT_SUCCESS; > } > > diff --git > a/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf > b/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf > index 16e91bd..98fb8db 100644 > --- > a/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf > +++ b/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe > +++ .inf > @@ -106,6 +106,3 @@ > > # Oniguruma: signed and unsigned mismatch/cast > MSFT:*_*_*_CC_FLAGS = /wd4018 /wd4245 /wd4389 > - > - # Oniguruma: error: variable 'fp' set but not used > - GCC:*_*_*_CC_FLAGS = -Wno-error=unused-but-set-variable > -- > 1.9.1 > > _______________________________________________ > edk2-devel mailing list > [email protected] > https://lists.01.org/mailman/listinfo/edk2-devel > _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

