Commit 394cb992 authored by Francois Cartegnie's avatar Francois Cartegnie

addons: fsstorage: fix missing end tag with versionless vlp

parent dcb11e03
......@@ -601,7 +601,8 @@ static int WriteCatalog( addons_storage_t *p_storage,
free( psz_uuid );
free( psz_tempstring );
WRITE_WITH_ENTITIES( " version=\"%s\">\n", p_entry->psz_version )
WRITE_WITH_ENTITIES( " version=\"%s\"", p_entry->psz_version )
fprintf( p_catalog, ">\n" );
WRITE_WITH_ENTITIES( "\t\t\t<name>%s</name>\n", p_entry->psz_name )
WRITE_WITH_ENTITIES( "\t\t\t<summary>%s</summary>\n", p_entry->psz_summary )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment