--resolve FS-3852

This commit is contained in:
Marc Olivier Chouinard 2013-07-03 13:01:23 -04:00
parent f91bdf12aa
commit fdbfbc867f
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_exec_string(switch_odbc_
SQLRowCount(stmt, &m);
handle->affected_rows = (int) m;
if (m <= 0) {
if (m == 0) {
goto done;
}