From: Christopher Jones Date: Mon, 9 Mar 2009 17:48:54 +0000 (+0000) Subject: MFH: Silence initialization warning X-Git-Tag: RELEASE_1_3_5~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f500b156586153dd3f863d2b1a07248fca5403ef;p=php MFH: Silence initialization warning --- diff --git a/ext/oci8/tests/bug27303_3.phpt b/ext/oci8/tests/bug27303_3.phpt index dd8b62083b..f290010f15 100644 --- a/ext/oci8/tests/bug27303_3.phpt +++ b/ext/oci8/tests/bug27303_3.phpt @@ -15,7 +15,7 @@ $create_st[] = "create table mytab (mydata varchar2(20), seqcol number)"; foreach ($create_st as $statement) { $stmt = oci_parse($c, $statement); - oci_execute($stmt); + @oci_execute($stmt); } define('MYLIMIT', 200);