1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-08 07:06:52 +02:00

Avoid error handler invocation

This commit is contained in:
Ondrej Brablc
2014-02-20 18:47:35 +01:00
committed by David Grudl
parent 204cb75bf0
commit 2dcf08a90c
2 changed files with 1 additions and 4 deletions

View File

@@ -452,7 +452,7 @@ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDri
public function getResultResource()
{
$this->autoFree = FALSE;
return @$this->resultSet->type === NULL ? NULL : $this->resultSet;
return $this->resultSet === NULL || $this->resultSet->type === NULL ? NULL : $this->resultSet;
}
}