Commit bd183d42 authored by kostja@bodhi.local's avatar kostja@bodhi.local
Browse files

Fix a valgrind warning in type_date test.

parent 8e7754c9
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -492,10 +492,11 @@ bool make_date_time(DATE_TIME_FORMAT *format, TIME *l_time,
  const char *ptr, *end;
  MY_LOCALE *locale;
  THD *thd= current_thd;
  char buf[128]; 
  String tmp(buf, thd->variables.character_set_results);
  char buf[STRING_BUFFER_USUAL_SIZE];
  String tmp(buf, sizeof(buf), thd->variables.character_set_results);
  uint errors= 0;

  tmp.length(0);
  str->length(0);
  str->set_charset(&my_charset_bin);
  locale = thd->variables.lc_time_names;