- Make ctor args optional

This commit is contained in:
Marcus Boerger 2005-02-23 00:29:44 +00:00
parent 994006abd4
commit 77cf78caa1

View File

@ -494,6 +494,8 @@ static PHP_METHOD(PDO, prepare)
RETURN_FALSE;
}
ctor_args = *item;
} else {
ctor_args = NULL;
}
} else {
dbstmt_ce = pdo_dbstmt_ce;