1 commit 30f9a094c1c60e0d68e4ea189f48ecb47aebb485
2 Author: arny <arnysch@gmx.net>
3 Date: Thu May 2 20:07:28 2019 +0200
5 Use ast_malloc and ast_free instead of malloc and free
6 in order to get rid of build errors with asterisk16 in OpenWrt
8 Signed-off-by: arny <arnysch@gmx.net>
10 diff --git a/src/channels/chan_lantiq.c b/src/channels/chan_lantiq.c
11 index a8fc869..90002ab 100644
12 --- a/src/channels/chan_lantiq.c
13 +++ b/src/channels/chan_lantiq.c
14 @@ -563,9 +563,9 @@ lantiq_dev_binary_buffer_create(const char *path, uint8_t **ppBuf, uint32_t *pBu
18 - *ppBuf = malloc(file_stat.st_size);
19 + *ppBuf = ast_malloc(file_stat.st_size);
21 - ast_log(LOG_ERROR, "binary file %s memory allocation failed\n", path);
22 + // Message already logged by ast_malloc
26 @@ -583,7 +583,7 @@ on_exit:
29 if (*ppBuf != NULL && status)
35 @@ -609,7 +609,7 @@ static int32_t lantiq_dev_firmware_download(int32_t fd, const char *path)