summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbelgin <belginstirbu@hotmail.com>2020-11-24 01:47:08 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-12-02 01:39:01 +0100
commit23735f6e3e6b08000d0b5cf17562fb78e0b0b789 (patch)
treea27ce13655555666388967dbc35fdf0ffa30e7e3
parent3a3a42738b56bda512cb73d0773e9f3572c67cbb (diff)
downloadpackages_apps_Messaging-replicant-6.0.tar.gz
packages_apps_Messaging-replicant-6.0.tar.bz2
packages_apps_Messaging-replicant-6.0.zip
Fix building after removing ambientsdkreplicant-6.0
Signed-off-by: belgin <belginstirbu@hotmail.com>
-rw-r--r--jni/GifTranscoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/jni/GifTranscoder.cpp b/jni/GifTranscoder.cpp
index 44fa30c..1f329f7 100644
--- a/jni/GifTranscoder.cpp
+++ b/jni/GifTranscoder.cpp
@@ -498,11 +498,11 @@ ColorARGB GifTranscoder::gifColorToColorARGB(const GifColorType& color) {
GifFilesCloser::~GifFilesCloser() {
if (mGifIn) {
- DGifCloseFile(mGifIn);
+ DGifCloseFile(mGifIn, NULL);
mGifIn = NULL;
}
if (mGifOut) {
- EGifCloseFile(mGifOut);
+ EGifCloseFile(mGifOut, NULL);
mGifOut = NULL;
}
}