• unknown's avatar
    Fix some bad code in mysqltest.c which cause segfault · 3caef95e
    unknown authored
    
    client/mysqltest.c:
      Remove vsnprintf() and DBUG_PRINT from die() function, as it's not portable to Windows, and it's not allowed to
      call vsnprintf() and then vfprintf() with the same args.
      Can't just print the buffer here, because the buffer is a fixed size.
      If the message is longer than will fit int he buffer, it would get
      truncated on Unix, and the full thing would be printed on Windows.
      This DBUG_PRINT isn't important enough for this hassle, so just get rid
      of it.
    3caef95e
mysqltest.c 188 KB