mirror of https://github.com/FreeRDP/FreeRDP
Fix whitespace
This commit is contained in:
parent
b06e50479e
commit
2e41c5425b
|
@ -410,7 +410,7 @@ static int fastpath_recv_update_data(rdpFastPath* fastpath, wStream* s)
|
|||
status = fastpath_recv_update(fastpath, updateCode, totalSize, cs);
|
||||
|
||||
if (status < 0)
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -434,7 +434,7 @@ static int fastpath_recv_update_data(rdpFastPath* fastpath, wStream* s)
|
|||
}
|
||||
|
||||
if (!(fastpath->updateData = StreamPool_Take(transport->ReceivePool, size)))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
|
||||
Stream_SetPosition(fastpath->updateData, 0);
|
||||
|
||||
|
@ -504,7 +504,7 @@ static int fastpath_recv_update_data(rdpFastPath* fastpath, wStream* s)
|
|||
Stream_Release(fastpath->updateData);
|
||||
|
||||
if (status < 0)
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -815,37 +815,37 @@ int rdp_recv_data_pdu(rdpRdp* rdp, wStream* s)
|
|||
{
|
||||
case DATA_PDU_TYPE_UPDATE:
|
||||
if (!update_recv(rdp->update, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_CONTROL:
|
||||
if (!rdp_recv_server_control_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_POINTER:
|
||||
if (!update_recv_pointer(rdp->update, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_SYNCHRONIZE:
|
||||
if (!rdp_recv_synchronize_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_PLAY_SOUND:
|
||||
if (!update_recv_play_sound(rdp->update, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_SHUTDOWN_DENIED:
|
||||
if (!rdp_recv_server_shutdown_denied_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_SAVE_SESSION_INFO:
|
||||
if (!rdp_recv_save_session_info(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_FONT_MAP:
|
||||
|
@ -855,32 +855,32 @@ int rdp_recv_data_pdu(rdpRdp* rdp, wStream* s)
|
|||
|
||||
case DATA_PDU_TYPE_SET_KEYBOARD_INDICATORS:
|
||||
if (!rdp_recv_server_set_keyboard_indicators_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_SET_KEYBOARD_IME_STATUS:
|
||||
if (!rdp_recv_server_set_keyboard_ime_status_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_SET_ERROR_INFO:
|
||||
if (!rdp_recv_set_error_info_data_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_ARC_STATUS:
|
||||
if (!rdp_recv_server_auto_reconnect_status_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_STATUS_INFO:
|
||||
if (!rdp_recv_server_status_info_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
case DATA_PDU_TYPE_MONITOR_LAYOUT:
|
||||
if (!rdp_recv_monitor_layout_pdu(rdp, cs))
|
||||
goto out_fail;
|
||||
goto out_fail;
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue