FreeRDP/libfreerdp-utils/blob.c

48 lines
1.1 KiB
C
Raw Normal View History

2011-07-01 02:24:37 +04:00
/**
* FreeRDP: A Remote Desktop Protocol Client
2011-07-07 19:49:57 +04:00
* BLOB Utils
2011-07-01 02:24:37 +04:00
*
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <freerdp/utils/memory.h>
2011-07-07 19:49:57 +04:00
#include <freerdp/utils/blob.h>
2011-07-01 02:24:37 +04:00
/**
* Allocate memory for data blob.
2011-07-07 19:49:57 +04:00
* @param blob blob structure
2011-07-01 02:24:37 +04:00
* @param length memory length
*/
void freerdp_blob_alloc(rdpBlob* blob, int length)
2011-07-01 02:24:37 +04:00
{
2011-07-07 19:49:57 +04:00
blob->data = xmalloc(length);
blob->length = length;
2011-07-01 02:24:37 +04:00
}
/**
* Free memory allocated for data blob.
2011-07-07 19:49:57 +04:00
* @param blob
2011-07-01 02:24:37 +04:00
*/
void freerdp_blob_free(rdpBlob* blob)
2011-07-01 02:24:37 +04:00
{
2011-07-07 19:49:57 +04:00
if (blob->data)
xfree(blob->data);
2011-07-01 02:24:37 +04:00
2011-07-07 19:49:57 +04:00
blob->length = 0;
2011-07-01 02:24:37 +04:00
}