From: bugreportuser <37939393+bugreportuser@users.noreply.github.com> Date: Sat, 6 Oct 2018 15:05:40 +0000 (-0600) Subject: mysqli_fork: Fix undefined variable X-Git-Tag: php-7.4.0alpha1~1747 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cdedc1cb896177fe8896834b6f0d17f49db09aa2;p=php mysqli_fork: Fix undefined variable --- diff --git a/ext/mysqli/tests/mysqli_fork.phpt b/ext/mysqli/tests/mysqli_fork.phpt index 4862b7a220..5057d47fba 100644 --- a/ext/mysqli/tests/mysqli_fork.phpt +++ b/ext/mysqli/tests/mysqli_fork.phpt @@ -179,7 +179,7 @@ if (!have_innodb($link)) if ($parent_row != $client_row) { printf("[015] Child indicates different results than parent.\n"); - var_dump($child_row); + var_dump($client_row); var_dump($parent_row); if (!mysqli_query($plink, sprintf($parent_sql, 'stop'))) { printf("[016] Parent cannot inform child\n", mysqli_errno($plink), mysqli_error($plink));