Browse Source

Bug#31752: check strmake() bounds

fix test program


client/mysqltest.c:
  fix buffer off-by-ones in test program
pull/374/head
unknown 18 years ago
parent
commit
9295bc3465
  1. 4
      client/mysqltest.c

4
client/mysqltest.c

@ -3067,7 +3067,7 @@ void do_get_file_name(struct st_command *command,
if (*p)
*p++= 0;
command->last_argument= p;
strmake(dest, name, dest_max_len);
strmake(dest, name, dest_max_len - 1);
}
@ -6375,7 +6375,7 @@ int main(int argc, char **argv)
if (save_file[0])
{
strmake(command->require_file, save_file, sizeof(save_file));
strmake(command->require_file, save_file, sizeof(save_file) - 1);
save_file[0]= 0;
}
run_query(cur_con, command, flags);

Loading…
Cancel
Save