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 21:44:57 -07:00
parent d9be57a140
commit d0ef880bbe

View File

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