detect: config checks alstate before getting tx

Ticket: 4972

As is done in detect-lua-extensions.
We can have a flow with alproto unknown, no state, and therefore
cannot run AppLayerParserGetTx which could try to run a NULL
function
pull/7242/head
Philippe Antoine 3 years ago committed by Victor Julien
parent 45d1a9ae77
commit dccf2e4c30

@ -89,6 +89,9 @@ void DetectConfigRegister(void)
static void ConfigApplyTx(Flow *f,
const uint64_t tx_id, const DetectConfigData *config)
{
if (f->alstate == NULL) {
return;
}
void *tx = AppLayerParserGetTx(f->proto, f->alproto, f->alstate, tx_id);
if (tx) {
AppLayerTxData *txd = AppLayerParserGetTxData(f->proto, f->alproto, tx);

Loading…
Cancel
Save