am 02002443: Merge "bionic: fix deleting property arrays in property benchmark"
* commit '02002443d4b17de78418d51fc303b4c976ad071a':
bionic: fix deleting property arrays in property benchmark
diff --git a/tests/property_benchmark.cpp b/tests/property_benchmark.cpp
index 5acd06c..2c8e2a1 100644
--- a/tests/property_benchmark.cpp
+++ b/tests/property_benchmark.cpp
@@ -62,10 +62,10 @@
delete names[i];
delete values[i];
}
- delete names;
- delete name_lens;
- delete values;
- delete value_lens;
+ delete[] names;
+ delete[] name_lens;
+ delete[] values;
+ delete[] value_lens;
free(pa);
}
public: