mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-02 10:22:46 +00:00
cel_pgsql: Fix name string for log on unable allocate memory.
The LOG_ERROR has reference to CDR instead of CEL for LENGTHEN_BUF1 and LENGTHEN_BUF2. ASTERISK-24965 #close Reported by: Rodrigo Ramirez Norambuena Change-Id: Icc818697d7d66d34bfe3048cdd15ca2b06c89744
This commit is contained in:
committed by
Matt Jordan
parent
07e729cc7b
commit
abd56db3e0
@@ -100,7 +100,7 @@ static AST_RWLIST_HEAD_STATIC(psql_columns, columns);
|
|||||||
/* Lengthen buffer, if necessary */ \
|
/* Lengthen buffer, if necessary */ \
|
||||||
if (ast_str_strlen(sql) + size + 1 > ast_str_size(sql)) { \
|
if (ast_str_strlen(sql) + size + 1 > ast_str_size(sql)) { \
|
||||||
if (ast_str_make_space(&sql, ((ast_str_size(sql) + size + 3) / 512 + 1) * 512) != 0) { \
|
if (ast_str_make_space(&sql, ((ast_str_size(sql) + size + 3) / 512 + 1) * 512) != 0) { \
|
||||||
ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
|
ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CEL '%s:%s' failed.\n", pghostname, table); \
|
||||||
ast_free(sql); \
|
ast_free(sql); \
|
||||||
ast_free(sql2); \
|
ast_free(sql2); \
|
||||||
AST_RWLIST_UNLOCK(&psql_columns); \
|
AST_RWLIST_UNLOCK(&psql_columns); \
|
||||||
@@ -113,7 +113,7 @@ static AST_RWLIST_HEAD_STATIC(psql_columns, columns);
|
|||||||
do { \
|
do { \
|
||||||
if (ast_str_strlen(sql2) + size + 1 > ast_str_size(sql2)) { \
|
if (ast_str_strlen(sql2) + size + 1 > ast_str_size(sql2)) { \
|
||||||
if (ast_str_make_space(&sql2, ((ast_str_size(sql2) + size + 3) / 512 + 1) * 512) != 0) { \
|
if (ast_str_make_space(&sql2, ((ast_str_size(sql2) + size + 3) / 512 + 1) * 512) != 0) { \
|
||||||
ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
|
ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CEL '%s:%s' failed.\n", pghostname, table); \
|
||||||
ast_free(sql); \
|
ast_free(sql); \
|
||||||
ast_free(sql2); \
|
ast_free(sql2); \
|
||||||
AST_RWLIST_UNLOCK(&psql_columns); \
|
AST_RWLIST_UNLOCK(&psql_columns); \
|
||||||
|
Reference in New Issue
Block a user