summaryrefslogtreecommitdiff
path: root/src/xine-utils/xmllexer.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-05-09 15:55:33 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-05-09 15:55:33 +0200
commit1e71123be300aa08325aca68f12d54e7149bd820 (patch)
tree00f2e457fd5a860d70deb5008eb44c60da0dbbde /src/xine-utils/xmllexer.c
parentc99cd9519a56b2d7c60fa30e9fecd02f08336671 (diff)
downloadxine-lib-1e71123be300aa08325aca68f12d54e7149bd820.tar.gz
xine-lib-1e71123be300aa08325aca68f12d54e7149bd820.tar.bz2
Remove a new bunch of xine_malloc() calls.
Also don't reset memory after it's allocated if we do that with calloc.
Diffstat (limited to 'src/xine-utils/xmllexer.c')
-rw-r--r--src/xine-utils/xmllexer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xine-utils/xmllexer.c b/src/xine-utils/xmllexer.c
index 09e5a5e24..7da4cc59b 100644
--- a/src/xine-utils/xmllexer.c
+++ b/src/xine-utils/xmllexer.c
@@ -29,7 +29,6 @@
#include "xineutils.h"
#else
#define lprintf(...)
-#define xine_xmalloc malloc
#endif
#include "xmllexer.h"
#include <stdio.h>
@@ -534,7 +533,7 @@ static struct {
char *lexer_decode_entities (const char *tok)
{
- char *buf = xine_xmalloc (strlen (tok) + 1);
+ char *buf = calloc (strlen (tok) + 1, sizeof(char));
char *bp = buf;
char c;