summaryrefslogtreecommitdiffstats
path: root/media/libstagefright
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2014-11-18 20:22:09 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-18 20:22:09 +0000
commitf69e638815dab77f367959f4c9d02c7a13bf9201 (patch)
tree91568f127668a895d1d92292032a7a14476b033d /media/libstagefright
parent6c3c11102c350cc86b5a55b8274bb8a4f9dd3632 (diff)
parentb08869a45c78d3a9cfdbc9d220b5d491076c5c7f (diff)
downloadframeworks_av-f69e638815dab77f367959f4c9d02c7a13bf9201.zip
frameworks_av-f69e638815dab77f367959f4c9d02c7a13bf9201.tar.gz
frameworks_av-f69e638815dab77f367959f4c9d02c7a13bf9201.tar.bz2
am b08869a4: am dd9d3e50: am 48b447fe: Merge "Fix uninitialized variable"
* commit 'b08869a45c78d3a9cfdbc9d220b5d491076c5c7f': Fix uninitialized variable
Diffstat (limited to 'media/libstagefright')
-rw-r--r--media/libstagefright/rtsp/SDPLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/rtsp/SDPLoader.cpp b/media/libstagefright/rtsp/SDPLoader.cpp
index 424badf..a24eb69 100644
--- a/media/libstagefright/rtsp/SDPLoader.cpp
+++ b/media/libstagefright/rtsp/SDPLoader.cpp
@@ -105,7 +105,7 @@ void SDPLoader::onLoad(const sp<AMessage> &msg) {
headers = NULL;
}
- off64_t sdpSize;
+ off64_t sdpSize = 0;
if (err == OK && !mCancelled) {
err = mHTTPDataSource->getSize(&sdpSize);