evr/presenter: Add missing break in get_FramesDrawn() (Coverity).

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2021-11-08 14:57:03 +03:00 committed by Alexandre Julliard
parent 7462d77f0b
commit e57e19c236
1 changed files with 1 additions and 0 deletions

View File

@ -1754,6 +1754,7 @@ static HRESULT WINAPI video_presenter_qualprop_get_FramesDrawn(IQualProp *iface,
case PRESENTER_STATE_PAUSED:
if (frames) *frames = presenter->frame_stats.presented;
else hr = E_POINTER;
break;
default:
hr = E_NOTIMPL;
}