gdi.exe16: Don't double-close the spool file.

FreePrintJob() closes the file descriptor.
This commit is contained in:
Ken Thomases 2011-11-30 10:06:00 -06:00 committed by Alexandre Julliard
parent 990786eef5
commit b035b0bad7
1 changed files with 0 additions and 2 deletions

View File

@ -388,8 +388,6 @@ INT16 WINAPI CloseJob16(HPJOB16 hJob)
pPrintJob = FindPrintJobFromHandle(hJob);
if (pPrintJob != NULL)
{
/* Close the spool file */
close(pPrintJob->fd);
FreePrintJob(hJob);
nRet = 1;
}