> On Sat, 20 May 2000, Thomas wrote:
> 
> > hi, 
> > I've run into some oddities..
> > running nmake test causes to seriously crash 
> > at "internal/table" while the same test with 1.22 passes fine.
> > Test "internal/api" FAILS for both 1.22 / 1.24
> > 
> > Both are compiled with identical setups using VC6 / WinNT
> > with the 1.3.12 / 5.00503 libs .
> > 
> > suggestions, anyone ??

randy found the problem, the patch below is in cvs now..

--- src/modules/perl/Table.xs   2000/05/12 22:45:32     1.9
+++ src/modules/perl/Table.xs   2000/05/23 15:56:12     1.10
@@ -58,7 +58,11 @@
 
 }
 
-static void table_delete(table *tab, const char *key, const char *val)
+static void
+#ifdef WIN32
+_stdcall 
+#endif
+table_delete(table *tab, const char *key, const char *val)
 {
     table_unset(tab, val);
 }


Reply via email to