mirror of https://github.com/FreeRDP/FreeRDP
Fixed variable assignment.
This commit is contained in:
parent
1a4cfa05cc
commit
88fa131248
|
@ -467,7 +467,7 @@ BOOL h264_context_init(H264_CONTEXT* h264)
|
||||||
|
|
||||||
for (i = 0; i < MAX_SUBSYSTEMS; i++)
|
for (i = 0; i < MAX_SUBSYSTEMS; i++)
|
||||||
{
|
{
|
||||||
const H264_CONTEXT_SUBSYSTEM* subsystem = &subSystems[i];
|
H264_CONTEXT_SUBSYSTEM* subsystem = subSystems[i];
|
||||||
if (!subsystem->Init)
|
if (!subsystem->Init)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue