diff options
author | Derek Sollenberger <djsollen@google.com> | 2014-09-24 09:20:09 -0400 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2014-09-24 09:32:37 -0400 |
commit | 1b99187253fcb03698a7db71394ff8a900ce56a6 (patch) | |
tree | 4f803f3885ed9d8a633875b3b5cad9e5a56849ed /core/jni/android | |
parent | def101127a3ad0a65eb1c3ef53e9f41c4d6be5d2 (diff) | |
download | frameworks_base-1b99187253fcb03698a7db71394ff8a900ce56a6.zip frameworks_base-1b99187253fcb03698a7db71394ff8a900ce56a6.tar.gz frameworks_base-1b99187253fcb03698a7db71394ff8a900ce56a6.tar.bz2 |
Fix memory leak where we close the descriptor instead of the file.
bug: 17541634
Change-Id: I842176213e0547dd737ef6e0b83c320a5cc32219
Diffstat (limited to 'core/jni/android')
-rw-r--r-- | core/jni/android/graphics/BitmapFactory.cpp | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/core/jni/android/graphics/BitmapFactory.cpp b/core/jni/android/graphics/BitmapFactory.cpp index 8ea28ec..6796134 100644 --- a/core/jni/android/graphics/BitmapFactory.cpp +++ b/core/jni/android/graphics/BitmapFactory.cpp @@ -478,7 +478,7 @@ static jobject nativeDecodeFileDescriptor(JNIEnv* env, jobject clazz, jobject fi NPE_CHECK_RETURN_ZERO(env, fileDescriptor); - jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); + int descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); struct stat fdStat; if (fstat(descriptor, &fdStat) == -1) { @@ -486,16 +486,22 @@ static jobject nativeDecodeFileDescriptor(JNIEnv* env, jobject clazz, jobject fi return nullObjectReturn("fstat return -1"); } - // Restore the descriptor's offset on exiting this function. - AutoFDSeek autoRestore(descriptor); + // Duplicate the descriptor here to prevent leaking memory. A leak occurs + // if we only close the file descriptor and not the file object it is used to + // create. If we don't explicitly clean up the file (which in turn closes the + // descriptor) the buffers allocated internally by fseek will be leaked. + int dupDescriptor = dup(descriptor); - FILE* file = fdopen(descriptor, "r"); + FILE* file = fdopen(dupDescriptor, "r"); if (file == NULL) { + // cleanup the duplicated descriptor since it will not be closed when the + // file is cleaned up (fclose). + close(dupDescriptor); return nullObjectReturn("Could not open file"); } SkAutoTUnref<SkFILEStream> fileStream(new SkFILEStream(file, - SkFILEStream::kCallerRetains_Ownership)); + SkFILEStream::kCallerPasses_Ownership)); // Use a buffered stream. Although an SkFILEStream can be rewound, this // ensures that SkImageDecoder::Factory never rewinds beyond the |