@Den4t commented on this pull request.
> @@ -226,12 +230,22 @@ static inline int add_secret(str _secret_key)
memset(secret_struct, 0, sizeof (struct secret));
secret_struct->secret_key = _secret_key;
SECRET_LOCK;
- if (secret_list != NULL)
+ if (secret_list == NULL)
+ {
+ secret_list = (struct secret **) shm_malloc(sizeof(struct
secret *));
+ if (secret_list == NULL)
+ {
+ LM_ERR("unable to allocate shared memory\n");
+ return -1;
Fixed.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3390#discussion_r1132239221
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3390/review/1334604...@github.com>
_______________________________________________
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org