wineps.drv: Fix a memory leak.

This commit is contained in:
Austin English 2009-04-14 11:25:47 -05:00 committed by Alexandre Julliard
parent ed74088d7d
commit 5f4cc6a89b
1 changed files with 4 additions and 0 deletions

View File

@ -516,5 +516,9 @@ int main(int argc, char *argv[])
triple_space(f_c);
write_encoding_by_UV(f_c);
/* Clean up */
fclose(f_c);
fclose(f_h;
return 0;
}