From 091616204cca0b5b8464ee2a07b4cea01c4bde4d Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 9 Jan 2014 18:11:04 +0200 Subject: [PATCH] lib/sdp: Fix incorrect sizeof argument length is a pointer to int table not int* table. --- lib/sdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sdp.c b/lib/sdp.c index cbdf15e59..886e7cffa 100644 --- a/lib/sdp.c +++ b/lib/sdp.c @@ -4773,7 +4773,7 @@ int sdp_set_supp_feat(sdp_record_t *rec, const sdp_list_t *sf) free(dtds); goto fail; } - lengths = malloc(plen * sizeof(int *)); + lengths = malloc(plen * sizeof(int)); if (!lengths) { free(dtds); free(vals); -- 2.47.3