diff options
author | obrien <obrien@FreeBSD.org> | 2002-07-12 00:49:52 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-07-12 00:49:52 +0000 |
commit | 49c474773829e98377d39c547720b0db447f38a5 (patch) | |
tree | 3aef460cc1d9af8feab56aca3e8589333367141e /contrib | |
parent | f95138e697fbadde75e008608dfcede5735788fd (diff) | |
download | FreeBSD-src-49c474773829e98377d39c547720b0db447f38a5.zip FreeBSD-src-49c474773829e98377d39c547720b0db447f38a5.tar.gz |
Yep, revision 1.3 was 1/2assed.
This time use the right attribute for null_format_ok.
Submitted by: bde
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/c-format.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/contrib/gcc/c-format.c b/contrib/gcc/c-format.c index 18ba218..f954116 100644 --- a/contrib/gcc/c-format.c +++ b/contrib/gcc/c-format.c @@ -85,7 +85,6 @@ typedef struct function_format_info enum format_type format_type; /* type of format (printf, scanf, etc.) */ unsigned HOST_WIDE_INT format_num; /* number of format argument */ unsigned HOST_WIDE_INT first_arg_num; /* number of first arg (zero for varargs) */ - int null_format_ok; /* TRUE if the format string may be NULL */ } function_format_info; static bool decode_format_attr PARAMS ((tree, @@ -940,14 +939,6 @@ static const format_flag_spec *get_flag_spec PARAMS ((const format_flag_spec *, static void check_format_types PARAMS ((int *, format_wanted_type *)); - -inline static int get_null_fmt_ok (fmttype) - enum format_type fmttype; -{ - return format_types[(int)fmttype].null_format_ok; -} - - /* Decode a format type from a string, returning the type, or format_type_error if not valid, in which case the caller should print an error message. */ @@ -1506,7 +1497,8 @@ check_format_info_recurse (status, res, info, format_tree, params, arg_num) specially if info == NULL and add a res->number_null entry for that case, or maybe add a function pointer to be called at the end instead of hardcoding check_format_info_main. */ - if (!info->null_format_ok) status_warning (status, "null format string"); + if (!format_types[info->format_type].null_format_ok) + status_warning (status, "null format string"); /* Skip to first argument to check, so we can see if this format has any arguments (it shouldn't). */ |