Module: kamailio
Branch: master
Commit: e36b2232e9b097794845659f71543bc57ef58a35
URL:
https://github.com/kamailio/kamailio/commit/e36b2232e9b097794845659f71543bc…
Author: Xenofon Karamanos <22965395+xkaraman(a)users.noreply.github.com>
Committer: Xenofon Karamanos <22965395+xkaraman(a)users.noreply.github.com>
Date: 2024-03-14T16:47:28Z
file_out: Fix var position and initialize
---
Modified: src/modules/file_out/file_out.c
---
Diff:
https://github.com/kamailio/kamailio/commit/e36b2232e9b097794845659f71543bc…
Patch:
https://github.com/kamailio/kamailio/commit/e36b2232e9b097794845659f71543bc…
---
diff --git a/src/modules/file_out/file_out.c b/src/modules/file_out/file_out.c
index f3dcfb831d9..7e035f13359 100644
--- a/src/modules/file_out/file_out.c
+++ b/src/modules/file_out/file_out.c
@@ -552,7 +552,10 @@ static int fo_get_full_path(const int index, char *full_path)
static int fo_write_to_file(sip_msg_t *msg, char *index, char *log_message)
{
int result, file_index;
- str fo_prefix_str, fo_prefix_val;
+ str fo_prefix_str = str_init("");
+ str fo_prefix_val = str_init("");
+ str value = str_init("");
+ fo_log_message_t logMessage = {0, 0, 0};
if(index == NULL || log_message == NULL) {
LM_ERR("filename or log_messsage is NULL\n");
@@ -565,7 +568,6 @@ static int fo_write_to_file(sip_msg_t *msg, char *index, char
*log_message)
return -1;
}
- str value = str_init("");
result = get_str_fparam(&value, msg, (fparam_t *)log_message);
if(result < 0) {
LM_ERR("Failed to get string from param 1: %d\n", result);
@@ -583,7 +585,6 @@ static int fo_write_to_file(sip_msg_t *msg, char *index, char
*log_message)
}
/* Add the logging string to the global gueue */
- fo_log_message_t logMessage = {0, 0, 0};
logMessage.prefix = &fo_prefix_val;
logMessage.message = &value;
logMessage.dest_file = file_index;