Skip to content

Commit

Permalink
Fix bug #75264
Browse files Browse the repository at this point in the history
  • Loading branch information
petk authored and krakjoe committed Oct 23, 2017
1 parent 9f00e26 commit a59e233
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ PHP NEWS
. Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown
function). (Laruence)

- DBA:
. Fixed bug #75264 (compiler warnings emitted). (petk)

- Enchant:
. Fixed bug #53070 (enchant_broker_get_path crashes if no path is set). (jelle
van der Waa, cmb)
Expand Down
2 changes: 1 addition & 1 deletion ext/dba/dba_gdbm.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ DBA_OPEN_FUNC(gdbm)
((dba_gdbm_data *) info->dbf)->dbf = dbf;
return SUCCESS;
}
*error = gdbm_strerror(gdbm_errno);
*error = (char *)gdbm_strerror(gdbm_errno);
return FAILURE;
}

Expand Down

0 comments on commit a59e233

Please sign in to comment.