Title: [195762] branches/safari-601.1.46-branch/Source/WebCore
Revision
195762
Author
[email protected]
Date
2016-01-28 11:04:06 -0800 (Thu, 28 Jan 2016)

Log Message

Merge follow-up fix for r195625.

Modified Paths

Diff

Modified: branches/safari-601.1.46-branch/Source/WebCore/ChangeLog (195761 => 195762)


--- branches/safari-601.1.46-branch/Source/WebCore/ChangeLog	2016-01-28 19:00:54 UTC (rev 195761)
+++ branches/safari-601.1.46-branch/Source/WebCore/ChangeLog	2016-01-28 19:04:06 UTC (rev 195762)
@@ -1,3 +1,7 @@
+2016-01-28  Babak Shafiei  <[email protected]>
+
+        Follow-up fix for r195625.
+
 2016-01-27  Babak Shafiei  <[email protected]>
 
         Merge r195625.

Modified: branches/safari-601.1.46-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp (195761 => 195762)


--- branches/safari-601.1.46-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp	2016-01-28 19:00:54 UTC (rev 195761)
+++ branches/safari-601.1.46-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp	2016-01-28 19:04:06 UTC (rev 195762)
@@ -139,7 +139,7 @@
             return jsUndefined();
     }
 
-    ExceptionCode ec;
+    ExceptionCode ec = 0;
     impl().stateObjectAdded(historyState.release(), title, url, History::StateObjectType::Push, ec);
     setDOMException(exec, ec);
 
@@ -168,7 +168,7 @@
             return jsUndefined();
     }
 
-    ExceptionCode ec;
+    ExceptionCode ec = 0;
     impl().stateObjectAdded(historyState.release(), title, url, History::StateObjectType::Replace, ec);
     setDOMException(exec, ec);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to