Changeset 281026 in webkit
- Timestamp:
- Aug 13, 2021, 11:58:37 AM (5 years ago)
- Location:
- branches/safari-611.3.10.0-branch/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Modules/webaudio/AudioNode.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-611.3.10.0-branch/Source/WebCore/ChangeLog
r280863 r281026 1 2021-08-13 Russell Epstein <repstein@apple.com> 2 3 Cherry-pick r278729. rdar://problem/80310242 4 5 Fix incorrect check in AudioNode.disconnect() 6 https://bugs.webkit.org/show_bug.cgi?id=226818 7 <rdar://problem/79076999> 8 9 Reviewed by Eric Carlson. 10 11 * Modules/webaudio/AudioNode.cpp: 12 (WebCore::AudioNode::disconnect): 13 14 15 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@278729 268f45cc-cd09-0410-ab3c-d52691b4dbfc 16 17 2021-06-10 Chris Dumez <cdumez@apple.com> 18 19 Fix incorrect check in AudioNode.disconnect() 20 https://bugs.webkit.org/show_bug.cgi?id=226818 21 <rdar://problem/79076999> 22 23 Reviewed by Eric Carlson. 24 25 * Modules/webaudio/AudioNode.cpp: 26 (WebCore::AudioNode::disconnect): 27 1 28 2021-08-10 Russell Epstein <repstein@apple.com> 2 29 -
branches/safari-611.3.10.0-branch/Source/WebCore/Modules/webaudio/AudioNode.cpp
r270808 r281026 313 313 return Exception { IndexSizeError, "output index is out of bounds"_s }; 314 314 315 if ( outputIndex >= destinationNode.numberOfInputs())315 if (inputIndex >= destinationNode.numberOfInputs()) 316 316 return Exception { IndexSizeError, "input index is out of bounds"_s }; 317 317
Note:
See TracChangeset
for help on using the changeset viewer.