diff options
-rw-r--r-- | src/xine-utils/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/utils.c b/src/xine-utils/utils.c index 8d7c405dc..f3c10a61b 100644 --- a/src/xine-utils/utils.c +++ b/src/xine-utils/utils.c @@ -274,8 +274,6 @@ void *xine_xcalloc(size_t nmemb, size_t size) { return ptr; } -} - void *xine_memdup (const void *src, size_t length) { void *dst = malloc (length); @@ -287,6 +285,8 @@ void *xine_memdup0 (const void *src, size_t length) char *dst = xine_xmalloc (length + 1); dst[length] = 0; return xine_fast_memcpy (dst, src, length); +} + #ifdef WIN32 /* * Parse command line with Windows XP syntax and copy the command (argv[0]). |