Increase API version to 1.2.2

This commit is contained in:
Bernhard Miklautz 2015-04-22 10:23:25 +02:00
parent c9ee30a815
commit 159306fc7a
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ endif()
set(WITH_LIBRARY_VERSIONING "ON")
set(FREERDP_VERSION_MAJOR "1")
set(FREERDP_VERSION_MINOR "2")
set(FREERDP_VERSION_REVISION "1")
set(FREERDP_VERSION_REVISION "2")
set(FREERDP_VERSION_SUFFIX "dev")
set(FREERDP_API_VERSION "${FREERDP_VERSION_MAJOR}.${FREERDP_VERSION_MINOR}")
set(FREERDP_VERSION "${FREERDP_API_VERSION}.${FREERDP_VERSION_REVISION}")

View File

@ -896,12 +896,12 @@ static BOOL update_send_surface_command(rdpContext* context, wStream* s)
if (!Stream_EnsureRemainingCapacity(update, Stream_GetPosition(s)))
{
ret = FALSE;
goto out_fail;
goto out;
}
Stream_Write(update, Stream_Buffer(s), Stream_GetPosition(s));
ret = fastpath_send_update_pdu(rdp->fastpath, FASTPATH_UPDATETYPE_SURFCMDS, update, FALSE);
out_fail:
out:
Stream_Release(update);
return ret;
}