1
0
mirror of https://github.com/php/php-src.git synced 2026-04-01 13:12:16 +02:00

Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  fixed possibly uninitialized value usage
This commit is contained in:
Anatol Belski
2013-12-17 08:45:30 +01:00

View File

@@ -472,7 +472,7 @@ static int odbc_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *p
if (P->outbuf) {
unsigned long ulen;
char *srcbuf;
unsigned long srclen;
unsigned long srclen = 0;
switch (P->len) {
case SQL_NULL_DATA: