2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 10:07:12 +00:00

parser: Fix delete after new[] -- patch from Oleg Strikov <oleg.strikov@gmail.com>

This commit is contained in:
Seth Arnold 2017-03-21 12:09:59 -07:00
parent 8ce02c20fa
commit 1285d81547

View File

@ -672,7 +672,7 @@ public:
~hashedNodeVec()
{
delete nodes;
delete [] nodes;
}
unsigned long size()const { return len; }