summaryrefslogtreecommitdiffstats
path: root/asxparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'asxparser.c')
-rw-r--r--asxparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asxparser.c b/asxparser.c
index 7d46e34feb..cdc503b9d4 100644
--- a/asxparser.c
+++ b/asxparser.c
@@ -211,11 +211,11 @@ asx_parse_attribs(ASX_Parser_t* parser,char* buffer,char*** _attribs) {
val[ptr2-ptr1] = '\0';
n_attrib++;
- attribs = (char**)realloc(attribs,2*n_attrib*sizeof(char*)+1);
+ attribs = (char**)realloc(attribs,(2*n_attrib+1)*sizeof(char*));
attribs[n_attrib*2-2] = attrib;
attribs[n_attrib*2-1] = val;
- ptr1 = ptr2+2;
+ ptr1 = ptr2+1;
}
if(n_attrib > 0)