about summary refs log tree commit diff homepage
path: root/include/klee/KDAlloc/allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/klee/KDAlloc/allocator.h')
-rw-r--r--include/klee/KDAlloc/allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/KDAlloc/allocator.h b/include/klee/KDAlloc/allocator.h
index 45d90536..1e0d305a 100644
--- a/include/klee/KDAlloc/allocator.h
+++ b/include/klee/KDAlloc/allocator.h
@@ -153,7 +153,7 @@ public:
     if (bin < static_cast<int>(sizedBins.size())) {
       return sizedBins[bin].deallocate(control->sizedBins[bin], ptr);
     } else {
-      return largeObjectBin.deallocate(control->largeObjectBin, ptr, size);
+      return largeObjectBin.deallocate(control->largeObjectBin, ptr);
     }
   }