X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=meta-starlingx%2Fmeta-stx-distro%2Frecipes-security%2Fgssproxy%2Ffiles%2FFix-potential-free-of-non-heap-address.patch;fp=meta-starlingx%2Fmeta-stx-distro%2Frecipes-security%2Fgssproxy%2Ffiles%2FFix-potential-free-of-non-heap-address.patch;h=0000000000000000000000000000000000000000;hb=6fc6934434f70595536a387ece31bc30141cafb5;hp=699307b5bedb0666052177589ecd524b4c58b80d;hpb=eb1e26510491ba49de693ab3b0498edcb06be6c5;p=pti%2Frtp.git diff --git a/meta-starlingx/meta-stx-distro/recipes-security/gssproxy/files/Fix-potential-free-of-non-heap-address.patch b/meta-starlingx/meta-stx-distro/recipes-security/gssproxy/files/Fix-potential-free-of-non-heap-address.patch deleted file mode 100644 index 699307b..0000000 --- a/meta-starlingx/meta-stx-distro/recipes-security/gssproxy/files/Fix-potential-free-of-non-heap-address.patch +++ /dev/null @@ -1,28 +0,0 @@ -From e087470af1a51b58fbac434ff2e30bc3f2a1f9ac Mon Sep 17 00:00:00 2001 -From: Robbie Harwood -Date: Mon, 11 Sep 2017 10:52:03 -0400 -Subject: [PATCH] Fix potential free of non-heap address - -Signed-off-by: Robbie Harwood -Reviewed-by: Simo Sorce -Merges: #211 -(cherry picked from commit 068f4174001c3ea4ae7913fb37210fec84abf1df) ---- - proxy/src/client/gpm_common.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/proxy/src/client/gpm_common.c b/proxy/src/client/gpm_common.c -index dba23a6..c65c69d 100644 ---- a/proxy/src/client/gpm_common.c -+++ b/proxy/src/client/gpm_common.c -@@ -553,8 +553,8 @@ static int gpm_send_recv_loop(struct gpm_ctx *gpmctx, char *send_buffer, - ret = gpm_retry_socket(gpmctx); - - /* Free buffer and set it to NULL to prevent free(xdr_reply_ctx) */ -- free(recv_buffer); -- recv_buffer = NULL; -+ free(*recv_buffer); -+ *recv_buffer = NULL; - - if (ret != 0) - return ret;