Title: [131845] trunk/LayoutTests
Revision
131845
Author
[email protected]
Date
2012-10-18 20:00:22 -0700 (Thu, 18 Oct 2012)

Log Message

Use of uninitialized variable in Media Source API test.
https://bugs.webkit.org/show_bug.cgi?id=99387

Patch by Anand Chakravarty <[email protected]> on 2012-10-18
Reviewed by Eric Carlson.

Set value of seekTime to 1 before using it.

* http/tests/media/media-source/video-media-source-state-changes.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (131844 => 131845)


--- trunk/LayoutTests/ChangeLog	2012-10-19 02:43:49 UTC (rev 131844)
+++ trunk/LayoutTests/ChangeLog	2012-10-19 03:00:22 UTC (rev 131845)
@@ -1,3 +1,14 @@
+2012-10-18  Anand Chakravarty  <[email protected]>
+
+        Use of uninitialized variable in Media Source API test.
+        https://bugs.webkit.org/show_bug.cgi?id=99387
+
+        Reviewed by Eric Carlson.
+
+        Set value of seekTime to 1 before using it.
+
+        * http/tests/media/media-source/video-media-source-state-changes.html:
+
 2012-10-18  Dirk Pranke  <[email protected]>
 
         De-dup expectations for chromium mountainlion

Modified: trunk/LayoutTests/http/tests/media/media-source/video-media-source-state-changes.html (131844 => 131845)


--- trunk/LayoutTests/http/tests/media/media-source/video-media-source-state-changes.html	2012-10-19 02:43:49 UTC (rev 131844)
+++ trunk/LayoutTests/http/tests/media/media-source/video-media-source-state-changes.html	2012-10-19 03:00:22 UTC (rev 131845)
@@ -6,7 +6,7 @@
         <script src=""
         <script>
             var segmentHelper = new MediaSourceTest.SegmentHelper(WebMSegmentInfo.testWebM);
-            var seekTime;
+            var seekTime = 1;
 
             function appendMediaSegmentsForSeek(segmentSeekTime)
             {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to