Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d2ab8f18 authored by hhakim's avatar hhakim
Browse files

Fix GPU2 MatPerm dtor segfault.

parent 87381e10
Branches
Tags
No related merge requests found
......@@ -213,8 +213,8 @@ namespace Faust
MatPerm<FPP, GPU2>::~MatPerm()
{
if(perm_ids)
delete perm_ids;
if(dt.size() > 0 && perm_ids_T)
delete perm_ids_T;
delete[] perm_ids;
if(perm_ids_T)
delete[] perm_ids_T;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment