efreet: let's pass memset parameter in the right order.

This commit is contained in:
Cedric Bail 2013-08-06 09:17:46 +09:00
parent ff9b4775e8
commit ea3f82fa1e
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ efreet_xml_attributes_parse(char **data, int *size,
Efreet_Xml_Attribute attr[11];
int i, count = 0;
memset(attr, sizeof(attr), 0);
memset(attr, 0, sizeof(attr));
while (*size > 0)
{
if (**data == '>')