Fix use-after-move in WebCore::RealtimeMediaSource::supportsSizeAndFrameRate(). Both `width` and `height` have a use-after-move bug in Source/WebCore/platform/mediastream/RealtimeMediaSource.cpp: ``` if (!supportsSizeAndFrameRate(WTFMove(width), WTFMove(height), WTFMove(frameRate))) { // Let's try without frame rate constraint if not mandatory. if (frameRateConstraint && !frameRateConstraint->isMandatory() && supportsSizeAndFrameRate(WTFMove(width), WTFMove(height), { })) ```
<rdar://problem/103201164>
Pull request: https://github.com/WebKit/WebKit/pull/7424
Committed 257685@main (c8239ff245f1): <https://commits.webkit.org/257685@main> Reviewed commits have been landed. Closing PR #7424 and removing active labels.