From: Christopher Jones Date: Mon, 9 Mar 2009 17:48:36 +0000 (+0000) Subject: Silence initialization warning X-Git-Tag: php-5.4.0alpha1~191^2~4183 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d4e215db4e090b20a4135f3a85353fafeabbd3d;p=php 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);