Move MIME cleanup before NetSurf's internal exit.

This commit is contained in:
Chris Young 2014-11-10 18:58:58 +00:00
parent 16e80452c2
commit 225161b05e
1 changed files with 3 additions and 3 deletions

View File

@ -5339,9 +5339,9 @@ int main(int argc, char** argv)
AddPart(script, nsoption_charp(arexx_shutdown), 1024);
ami_arexx_execute(script);
netsurf_exit();
ami_mime_free();
return 0;
netsurf_exit();
return RETURN_OK;
}