[mod_pgsql] Fix memory leek in the case of an empty string of err_str in pgsql_handle_exec_base_detailed()

This commit is contained in:
Andrey Volk 2021-01-21 18:29:44 +03:00
parent e614f08c93
commit c282386fdb

View File

@ -515,6 +515,7 @@ error:
err_str = pgsql_handle_get_error(handle);
if (zstr(err_str)) {
switch_safe_free(err_str);
if (!er) {
err_str = strdup((char *)"SQL ERROR!");
} else {