You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/09/07 08:41:56 UTC

svn commit: r812007 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c

Author: mturk
Date: Mon Sep  7 06:41:55 2009
New Revision: 812007

URL: http://svn.apache.org/viewvc?rev=812007&view=rev
Log:
Fix typos

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c?rev=812007&r1=812006&r2=812007&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/main.c Mon Sep  7 06:41:55 2009
@@ -92,7 +92,7 @@
                                     &heap_value,
                                     sizeof(heap_value))) {
                 /* Failed setting LFH */
-                HeapDestory(dll_heap_handle);
+                HeapDestroy(dll_heap_handle);
                 return FALSE;
             }
             if ((dll_tls_index = TlsAlloc()) == TLS_OUT_OF_INDEXES) {
@@ -125,7 +125,7 @@
                 }
                 TlsFree(dll_tls_index);
             }
-            HeapDestory(dll_heap_handle);
+            HeapDestroy(dll_heap_handle);
             dll_instance = NULL;
         break;
         default: