Commit in reactos/lib/user32/windows on MAIN
font.c+2-21.11 -> 1.12
Dmitry Timoshkov <dmitry@codeweavers.com>
DrawTextEx should allocate text buffer on stack for thread safeness.

reactos/lib/user32/windows
font.c 1.11 -> 1.12
diff -u -r1.11 -r1.12
--- font.c	15 Aug 2004 21:36:29 -0000	1.11
+++ font.c	29 Nov 2004 16:51:10 -0000	1.12
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: font.c,v 1.11 2004/08/15 21:36:29 chorns Exp $
+/* $Id: font.c,v 1.12 2004/11/29 16:51:10 navaraf Exp $
  *
  * PROJECT:         ReactOS user32.dll
  * FILE:            lib/user32/windows/input.c
@@ -991,7 +991,7 @@
     const WCHAR *strPtr;
     WCHAR *retstr, *p_retstr;
     size_t size_retstr;
-    static WCHAR line[MAX_STATIC_BUFFER];
+    WCHAR line[MAX_STATIC_BUFFER];
     int len, lh, count=i_count;
     TEXTMETRICW tm;
     int lmargin = 0, rmargin = 0;
CVSspam 0.2.8