2011-07-01 02:24:37 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* Memory Utils
|
|
|
|
*
|
|
|
|
* Copyright 2009-2011 Jay Sorg
|
|
|
|
*
|
|
|
|
* 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 <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
/**
|
|
|
|
* Allocate memory.
|
|
|
|
* @param size
|
|
|
|
*/
|
|
|
|
|
2011-07-13 18:13:00 +04:00
|
|
|
void* xmalloc(size_t size)
|
2011-07-01 02:24:37 +04:00
|
|
|
{
|
2011-07-13 18:13:00 +04:00
|
|
|
void* mem;
|
2011-07-01 02:24:37 +04:00
|
|
|
|
|
|
|
if (size < 1)
|
|
|
|
size = 1;
|
2011-07-03 20:42:35 +04:00
|
|
|
|
2011-07-01 02:24:37 +04:00
|
|
|
mem = malloc(size);
|
2011-07-03 20:42:35 +04:00
|
|
|
|
2011-07-01 02:24:37 +04:00
|
|
|
if (mem == NULL)
|
|
|
|
perror("xmalloc");
|
2011-07-03 20:42:35 +04:00
|
|
|
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate memory initialized to zero.
|
|
|
|
* @param size
|
|
|
|
*/
|
|
|
|
|
2011-07-13 18:13:00 +04:00
|
|
|
void* xzalloc(size_t size)
|
2011-07-03 20:42:35 +04:00
|
|
|
{
|
2011-07-13 18:13:00 +04:00
|
|
|
void* mem;
|
2011-07-03 20:42:35 +04:00
|
|
|
|
|
|
|
if (size < 1)
|
|
|
|
size = 1;
|
|
|
|
|
|
|
|
mem = calloc(1, size);
|
|
|
|
|
|
|
|
if (mem == NULL)
|
|
|
|
perror("xzalloc");
|
|
|
|
|
2011-07-01 02:24:37 +04:00
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
/**
|
|
|
|
* Reallocate memory.
|
|
|
|
* @param ptr
|
|
|
|
* @param size
|
|
|
|
*/
|
|
|
|
|
2011-07-13 18:13:00 +04:00
|
|
|
void* xrealloc(void* ptr, size_t size)
|
2011-07-01 02:24:37 +04:00
|
|
|
{
|
2011-07-13 18:13:00 +04:00
|
|
|
void* mem;
|
2011-07-01 02:24:37 +04:00
|
|
|
|
|
|
|
if (size < 1)
|
|
|
|
size = 1;
|
2011-07-03 20:42:35 +04:00
|
|
|
|
|
|
|
mem = realloc(ptr, size);
|
|
|
|
|
2011-07-01 02:24:37 +04:00
|
|
|
if (mem == NULL)
|
|
|
|
perror("xrealloc");
|
2011-07-03 20:42:35 +04:00
|
|
|
|
2011-07-01 02:24:37 +04:00
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
/**
|
|
|
|
* Free memory.
|
|
|
|
* @param mem
|
|
|
|
*/
|
|
|
|
|
2011-07-13 18:13:00 +04:00
|
|
|
void xfree(void* ptr)
|
2011-07-01 02:24:37 +04:00
|
|
|
{
|
2011-07-03 20:42:35 +04:00
|
|
|
if (ptr != NULL)
|
|
|
|
free(ptr);
|
2011-07-01 02:24:37 +04:00
|
|
|
}
|
|
|
|
|
2011-07-03 20:42:35 +04:00
|
|
|
/**
|
|
|
|
* Duplicate a string in memory.
|
|
|
|
* @param str
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
2011-07-13 18:13:00 +04:00
|
|
|
char* xstrdup(const char* str)
|
2011-07-01 02:24:37 +04:00
|
|
|
{
|
2011-07-13 18:13:00 +04:00
|
|
|
char* mem;
|
2011-07-01 02:24:37 +04:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2011-07-03 20:42:35 +04:00
|
|
|
mem = _strdup(str);
|
2011-07-01 02:24:37 +04:00
|
|
|
#else
|
2011-07-03 20:42:35 +04:00
|
|
|
mem = strdup(str);
|
2011-07-01 02:24:37 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (mem == NULL)
|
|
|
|
perror("strdup");
|
|
|
|
|
|
|
|
return mem;
|
|
|
|
}
|