Title: [195758] branches/safari-601-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp
- Revision
- 195758
- Author
- [email protected]
- Date
- 2016-01-28 10:41:27 -0800 (Thu, 28 Jan 2016)
Log Message
Follow-up fix for rdar://problem/24337870
Modified Paths
Diff
Modified: branches/safari-601-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp (195757 => 195758)
--- branches/safari-601-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp 2016-01-28 18:40:41 UTC (rev 195757)
+++ branches/safari-601-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp 2016-01-28 18:41:27 UTC (rev 195758)
@@ -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