diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-07-25 05:38:50 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-07-25 11:57:11 +0200 |
commit | a5e80b22e11c2db7fd5ff07b5b7a28f80745e89b (patch) | |
tree | 31d5964b5ceeb8ca1f81511f08bc4b89d872e8a7 /ext/mysqli/mysqli_api.c | |
parent | a29a800cb0749c19a99a7019219c44b5415b6a78 (diff) | |
download | php-git-a5e80b22e11c2db7fd5ff07b5b7a28f80745e89b.tar.gz |
Fix typos in code comments
Diffstat (limited to 'ext/mysqli/mysqli_api.c')
-rw-r--r-- | ext/mysqli/mysqli_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 2110f35ae1..40c7d2982d 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -542,7 +542,7 @@ mysqli_stmt_bind_result_do_bind(MY_STMT *stmt, zval *args, unsigned int argc) MYSQLI_REPORT_STMT_ERROR(stmt->stmt); if (rc) { - /* dont close the statement or subsequent usage (for example ->execute()) will lead to crash */ + /* don't close the statement or subsequent usage (for example ->execute()) will lead to crash */ for (i=0; i < var_cnt ; i++) { if (stmt->result.buf[i].val) { efree(stmt->result.buf[i].val); |