From: Jason Rumney Date: Wed, 20 Jun 2007 21:26:53 +0000 (+0000) Subject: (w32_BDF_to_x_font): Unmap memory when finished. X-Git-Tag: emacs-pretest-22.1.90~1331 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=76e4973a857ec84c85df7c199530436c3150862d;p=emacs.git (w32_BDF_to_x_font): Unmap memory when finished. (w32_free_bdf_font): Unmap memory not handle. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6f1be74a8e2..8a700909590 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-06-20 Jason Rumney + + * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished. + (w32_free_bdf_font): Unmap memory not handle. + 2007-06-20 Juanma Barranquero * w32.c (_wsa_errlist): Fix typo in error message. diff --git a/src/w32bdf.c b/src/w32bdf.c index 64ec2f7a3b0..40e705a18c9 100644 --- a/src/w32bdf.c +++ b/src/w32bdf.c @@ -302,7 +302,7 @@ w32_free_bdf_font(bdffont *fontp) font_char *pch; cache_bitmap *pcb; - UnmapViewOfFile(fontp->hfilemap); + UnmapViewOfFile(fontp->font); CloseHandle(fontp->hfilemap); CloseHandle(fontp->hfile); @@ -867,6 +867,7 @@ int w32_BDF_to_x_font (char *file, char* xstr, int len) retval = 1; } } + UnmapViewOfFile (font); CloseHandle (hfile); CloseHandle (hfilemap); return retval;