diff options
Diffstat (limited to 'src/libtools')
| -rwxr-xr-x | src/libtools/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtools/threads.c b/src/libtools/threads.c index 1a295345..6ca79091 100755 --- a/src/libtools/threads.c +++ b/src/libtools/threads.c @@ -299,7 +299,7 @@ void freeAlignedAttr(void* attr) return; aligned_attr_t* at = (aligned_attr_t*)attr; if(at->sign==SIGN_ATTR) { - free(at->at); + box_free(at->at); at->sign = 0LL; } } |