Changeset 5482:573d1aab3c89
- Timestamp:
- 2008-08-19 13:17:18 (3 months ago)
- Author:
- Brendan Cully <brendan@…>
- Branch:
- HEAD
- Message:
-
Silence an incorrect uninitialized variable warning.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r5477
|
r5482
|
|
| 1687 | 1687 | static int check_charset (struct option_t *opt, const char *val) |
| 1688 | 1688 | { |
| 1689 | | char *p, *q, *s = safe_strdup (val); |
| | 1689 | char *p, *q = NULL, *s = safe_strdup (val); |
| 1690 | 1690 | int rc = 0, strict = strcmp (opt->option, "send_charset") == 0; |
| 1691 | 1691 | |