summaryrefslogtreecommitdiffstats
path: root/drm/common/DrmSupportInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'drm/common/DrmSupportInfo.cpp')
-rw-r--r--drm/common/DrmSupportInfo.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/drm/common/DrmSupportInfo.cpp b/drm/common/DrmSupportInfo.cpp
index 3dee435..5400bdd 100644
--- a/drm/common/DrmSupportInfo.cpp
+++ b/drm/common/DrmSupportInfo.cpp
@@ -43,6 +43,10 @@ bool DrmSupportInfo::operator==(const DrmSupportInfo& drmSupportInfo) const {
}
bool DrmSupportInfo::isSupportedMimeType(const String8& mimeType) const {
+ if (String8("") == mimeType) {
+ return false;
+ }
+
for (unsigned int i = 0; i < mMimeTypeVector.size(); i++) {
const String8 item = mMimeTypeVector.itemAt(i);