Commit in reactos/lib/freetype on MAIN
rosglue.c+3-31.2 -> 1.3
- Allocate the memory from paged pool instead of non-paged pool as almost all code (and none of the font code) in Win32k runs at IRQL < DISPATCH_LEVEL.

reactos/lib/freetype
rosglue.c 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- rosglue.c	1 Apr 2003 17:14:36 -0000	1.2
+++ rosglue.c	18 Nov 2004 22:22:46 -0000	1.3
@@ -1,4 +1,4 @@
-/* $Id: rosglue.c,v 1.2 2003/04/01 17:14:36 gvg Exp $
+/* $Id: rosglue.c,v 1.3 2004/11/18 22:22:46 navaraf Exp $
  *
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           FreeType implementation for ReactOS
@@ -84,7 +84,7 @@
 {
   void *Object;
 
-  Object = ExAllocatePoolWithTag(NonPagedPool, sizeof(size_t) + Size, TAG_FREETYPE);
+  Object = ExAllocatePoolWithTag(PagedPool, sizeof(size_t) + Size, TAG_FREETYPE);
   if (NULL != Object)
     {
     *((size_t *) Object) = Size;
@@ -100,7 +100,7 @@
   void *NewObject;
   size_t CopySize;
 
-  NewObject = ExAllocatePoolWithTag(NonPagedPool, sizeof(size_t) + Size, TAG_FREETYPE);
+  NewObject = ExAllocatePoolWithTag(PagedPool, sizeof(size_t) + Size, TAG_FREETYPE);
   if (NULL != NewObject)
     {
     *((size_t *) NewObject) = Size;
CVSspam 0.2.8