summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArne Coucheron <arco68@gmail.com>2017-08-12 06:16:54 +0200
committerArne Coucheron <arco68@gmail.com>2018-01-27 00:41:44 +0100
commit395fe6019b4ecc9159cbde3742d1035f3b7de3ca (patch)
tree5860b3cfd9390c5c648feb7f874efee8cc3cf5a2
parentd7c9431af373b7bab45332c05d4374505a6d5349 (diff)
downloadandroid_packages_apps_Snap-395fe6019b4ecc9159cbde3742d1035f3b7de3ca.tar.gz
android_packages_apps_Snap-395fe6019b4ecc9159cbde3742d1035f3b7de3ca.tar.bz2
android_packages_apps_Snap-395fe6019b4ecc9159cbde3742d1035f3b7de3ca.zip
Snap: Fix warning in Blend.cpp
Change-Id: I32fdaf8f21f3d9edb31d6945be04bcaaa10d5b7e
-rw-r--r--jni/feature_mos/src/mosaic/Blend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/jni/feature_mos/src/mosaic/Blend.cpp b/jni/feature_mos/src/mosaic/Blend.cpp
index 8e8ca6749..9ee194ab2 100644
--- a/jni/feature_mos/src/mosaic/Blend.cpp
+++ b/jni/feature_mos/src/mosaic/Blend.cpp
@@ -807,7 +807,7 @@ int Blend::PerformFinalBlending(YUVinfo &imgMos, MosaicRect &cropping_rect)
delete b[j];
}
- delete b;
+ delete[] b;
return BLEND_RET_OK;
}