Title: [206052] branches/safari-602-branch/Source/WebKit2
- Revision
- 206052
- Author
- [email protected]
- Date
- 2016-09-16 14:43:04 -0700 (Fri, 16 Sep 2016)
Log Message
Merge r206003. rdar://problem/27991573
Modified Paths
Diff
Modified: branches/safari-602-branch/Source/WebKit2/ChangeLog (206051 => 206052)
--- branches/safari-602-branch/Source/WebKit2/ChangeLog 2016-09-16 21:43:02 UTC (rev 206051)
+++ branches/safari-602-branch/Source/WebKit2/ChangeLog 2016-09-16 21:43:04 UTC (rev 206052)
@@ -1,5 +1,18 @@
2016-09-16 Babak Shafiei <[email protected]>
+ Merge r206003. rdar://problem/27991573
+
+ 2016-09-15 Anders Carlsson <[email protected]>
+
+ Actually assign the decoded enum value to the output value
+ https://bugs.webkit.org/show_bug.cgi?id=162042
+
+ Reviewed by Brady Eidson.
+
+ * Platform/IPC/Decoder.h:
+
+2016-09-16 Babak Shafiei <[email protected]>
+
Merge r206000. rdar://problem/27991573
2016-09-15 Anders Carlsson <[email protected]>
Modified: branches/safari-602-branch/Source/WebKit2/Platform/IPC/ArgumentDecoder.h (206051 => 206052)
--- branches/safari-602-branch/Source/WebKit2/Platform/IPC/ArgumentDecoder.h 2016-09-16 21:43:02 UTC (rev 206051)
+++ branches/safari-602-branch/Source/WebKit2/Platform/IPC/ArgumentDecoder.h 2016-09-16 21:43:04 UTC (rev 206052)
@@ -70,6 +70,7 @@
if (!isValidEnum<E>(value))
return false;
+ e = static_cast<E>(value);
return true;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes