Changeset 278729 in webkit
- Timestamp:
- Jun 10, 2021, 1:53:47 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Modules/webaudio/AudioNode.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r278728 r278729 1 2021-06-10 Chris Dumez <cdumez@apple.com> 2 3 Fix incorrect check in AudioNode.disconnect() 4 https://bugs.webkit.org/show_bug.cgi?id=226818 5 <rdar://problem/79076999> 6 7 Reviewed by Eric Carlson. 8 9 * Modules/webaudio/AudioNode.cpp: 10 (WebCore::AudioNode::disconnect): 11 1 12 2021-06-10 Toshio Ogasawara <toshio.ogasawara@access-company.com> 2 13 -
trunk/Source/WebCore/Modules/webaudio/AudioNode.cpp
r278266 r278729 317 317 return Exception { IndexSizeError, "output index is out of bounds"_s }; 318 318 319 if ( outputIndex >= destinationNode.numberOfInputs())319 if (inputIndex >= destinationNode.numberOfInputs()) 320 320 return Exception { IndexSizeError, "input index is out of bounds"_s }; 321 321
Note:
See TracChangeset
for help on using the changeset viewer.