From: Philippe Antoine Date: Thu, 8 Apr 2021 15:44:01 +0000 (+0200) Subject: ftp: fixes leak with duplicate expectation X-Git-Tag: suricata-7.0.0-beta1~1688 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68d6922e3cc47c2608e1ac3614c6bd3a48185a12;p=thirdparty%2Fsuricata.git ftp: fixes leak with duplicate expectation --- diff --git a/src/app-layer-expectation.c b/src/app-layer-expectation.c index 0408086b3c..4741689aaf 100644 --- a/src/app-layer-expectation.c +++ b/src/app-layer-expectation.c @@ -324,7 +324,7 @@ AppProto AppLayerExpectationHandle(Flow *f, uint8_t flags) alproto = exp->alproto; f->alproto_ts = alproto; f->alproto_tc = alproto; - void *fdata = FlowGetStorageById(f, g_expectation_id); + void *fdata = FlowGetStorageById(f, g_expectation_data_id); if (fdata) { /* We already have an expectation so let's clean this one */ ExpectationDataFree(exp->data);