Title: [117606] trunk/Source/WebCore
- Revision
- 117606
- Author
- [email protected]
- Date
- 2012-05-18 11:02:31 -0700 (Fri, 18 May 2012)
Log Message
[GStreamer] Fix early return of the mimeTypeCache function after r117207.
Rubber-stamped by Martin Robinson.
* platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: Set
typeListInitialized to true after the cache has been filled so
that next call to the function goes through the early return path.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (117605 => 117606)
--- trunk/Source/WebCore/ChangeLog 2012-05-18 17:50:06 UTC (rev 117605)
+++ trunk/Source/WebCore/ChangeLog 2012-05-18 18:02:31 UTC (rev 117606)
@@ -1,3 +1,13 @@
+2012-05-18 Philippe Normand <[email protected]>
+
+ [GStreamer] Fix early return of the mimeTypeCache function after r117207.
+
+ Rubber-stamped by Martin Robinson.
+
+ * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: Set
+ typeListInitialized to true after the cache has been filled so
+ that next call to the function goes through the early return path.
+
2012-05-18 Martin Robinson <[email protected]>
Get IndexedDB closer to building for GTK+.
Modified: trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp (117605 => 117606)
--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp 2012-05-18 17:50:06 UTC (rev 117605)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp 2012-05-18 18:02:31 UTC (rev 117606)
@@ -1588,6 +1588,7 @@
for (unsigned i = 0; i < (sizeof(mimeTypes) / sizeof(*mimeTypes)); ++i)
cache.add(String(mimeTypes[i]));
+ typeListInitialized = true;
return cache;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes