Changeset 5482:573d1aab3c89

Show
Ignore:
Timestamp:
2008-08-19 13:17:18 (3 months ago)
Author:
Brendan Cully <brendan@…>
Branch:
HEAD
Message:

Silence an incorrect uninitialized variable warning.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • init.c

    r5477 r5482  
    16871687static int check_charset (struct option_t *opt, const char *val) 
    16881688{ 
    1689   char *p, *q, *s = safe_strdup (val); 
     1689  char *p, *q = NULL, *s = safe_strdup (val); 
    16901690  int rc = 0, strict = strcmp (opt->option, "send_charset") == 0; 
    16911691