⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 281026 in webkit


Ignore:
Timestamp:
Aug 13, 2021, 11:58:37 AM (5 years ago)
Author:
Alan Coon
Message:

Cherry-pick r278729. rdar://problem/80310242

Fix incorrect check in AudioNode.disconnect()
https://bugs.webkit.org/show_bug.cgi?id=226818
<rdar://problem/79076999>

Reviewed by Eric Carlson.

  • Modules/webaudio/AudioNode.cpp: (WebCore::AudioNode::disconnect):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@278729 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-611.3.10.0-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-611.3.10.0-branch/Source/WebCore/ChangeLog

    r280863 r281026  
     12021-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
    1282021-08-10  Russell Epstein  <repstein@apple.com>
    229
  • branches/safari-611.3.10.0-branch/Source/WebCore/Modules/webaudio/AudioNode.cpp

    r270808 r281026  
    313313        return Exception { IndexSizeError, "output index is out of bounds"_s };
    314314
    315     if (outputIndex >= destinationNode.numberOfInputs())
     315    if (inputIndex >= destinationNode.numberOfInputs())
    316316        return Exception { IndexSizeError, "input index is out of bounds"_s };
    317317
Note: See TracChangeset for help on using the changeset viewer.