Browse Source

getopt.c changed a sprintf call to the more secure snprintf

ahc_fix_select
tbbulloc 18 years ago
parent
commit
059b4ae440
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      httperf/ChangeLog
  2. +1
    -1
      httperf/src/lib/getopt.c

+ 2
- 0
httperf/ChangeLog View File

@@ -2,6 +2,8 @@

* wsesslog.c changed a sprintf call to the more secure snprintf

*getopt.c changed a sprintf call to the more secure snprintf

2007-01-20 Ted Bullock <tbullock@canada.com>

* Included the shell script autogen.sh to compile the necessary


+ 1
- 1
httperf/src/lib/getopt.c View File

@@ -353,7 +353,7 @@ _getopt_initialize (optstring)
file name wildcard expansion and therefore should not be
considered as options. */
char var[100];
sprintf (var, "_%d_GNU_nonoption_argv_flags_", getpid ());
snprintf (var, sizeof(var), "_%d_GNU_nonoption_argv_flags_", getpid ());
nonoption_flags = getenv (var);
if (nonoption_flags == NULL)
nonoption_flags_len = 0;


Loading…
Cancel
Save