Bug 199911

Summary: Fix 32-bit watchOS build
Product: WebKit Reporter: Keith Rollin <krollin>
Component: WebCore Misc.Assignee: Keith Rollin <krollin>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: andersca, simon.fraser, webkit-bug-importer, wenson_hsieh
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch none

Keith Rollin
Reported 2019-07-18 10:45:03 PDT
RenderLayerCompositor.cpp contains the line auto overflowScrollNodeID = 0; This will overflowScrollNodeID a type of 'int', and can be 32-bit in some builds. However, later in the function, overflowScrollNodeID is used in contexts that expect a ScrollingNodeID, which is a 64-bit value. The mismatch can lead to a build error. Fix this by explicitly giving overflowScrollNodeID the desired type.
Attachments
Patch (2.06 KB, patch)
2019-07-18 10:47 PDT, Keith Rollin
no flags
Radar WebKit Bug Importer
Comment 1 2019-07-18 10:45:21 PDT
Keith Rollin
Comment 2 2019-07-18 10:47:58 PDT
Wenson Hsieh
Comment 3 2019-07-18 11:00:50 PDT
*** This bug has been marked as a duplicate of bug 199840 ***
Note You need to log in before you can comment on or make changes to this bug.