Commit in reactos/lib/rosrtl/string on MAIN
resstr.c+2-21.2 -> 1.3
don't allocate movable memory and use the returned handle as a pointer, allocate fixed memory instead

reactos/lib/rosrtl/string
resstr.c 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- resstr.c	10 Aug 2004 12:00:55 -0000	1.2
+++ resstr.c	28 Dec 2004 13:11:02 -0000	1.3
@@ -62,7 +62,7 @@
   ln = RosLenOfStrResource(hInst, uID);
   if(ln++ > 0)
   {
-    (*lpTarget) = (LPSTR)LocalAlloc(LHND, ln * sizeof(CHAR));
+    (*lpTarget) = (LPSTR)LocalAlloc(LMEM_FIXED, ln * sizeof(CHAR));
     if((*lpTarget) != NULL)
     {
       int Ret;
@@ -94,7 +94,7 @@
   ln = RosLenOfStrResource(hInst, uID);
   if(ln++ > 0)
   {
-    (*lpTarget) = (LPWSTR)LocalAlloc(LHND, ln * sizeof(WCHAR));
+    (*lpTarget) = (LPWSTR)LocalAlloc(LMEM_FIXED, ln * sizeof(WCHAR));
     if((*lpTarget) != NULL)
     {
       int Ret;
CVSspam 0.2.8