1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00

Merge branch 'PHP-5.6'

* PHP-5.6:
  fixed possibly uninitialized value usage
This commit is contained in:
Anatol Belski
2013-12-17 08:45:49 +01:00
+1 -1
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: