Local variable store was shadowing variable in function
definition.
}
static void SCProfilingUpdatePacketGenericRecords(Packet *p, PktProfilingData *pd,
- struct ProfileProtoRecords *store, int size)
+ struct ProfileProtoRecords *records, int size)
{
int i;
for (i = 0; i < size; i++) {
continue;
}
- struct ProfileProtoRecords *r = &store[i];
+ struct ProfileProtoRecords *r = &records[i];
SCProfilePacketData *store = NULL;
if (PKT_IS_IPV4(p)) {