Change 29966 by [EMAIL PROTECTED] on 2007/01/25 10:15:27
Correct the definition of S_vdie_common in mathoms.c
Affected files ...
... //depot/maint-5.8/perl/mathoms.c#23 edit
Differences ...
==== //depot/maint-5.8/perl/mathoms.c#23 (text) ====
Index: perl/mathoms.c
--- perl/mathoms.c#22~29965~ 2007-01-24 16:07:28.000000000 -0800
+++ perl/mathoms.c 2007-01-25 02:15:27.000000000 -0800
@@ -1266,10 +1266,12 @@
packlist(cat, pat, patend, beglist, endlist);
}
+bool
/* Whilst this should really be STATIC, it was not in 5.8.7, hence something
may have linked against it. */
S_vdie_common(pTHX_ const char *message, STRLEN msglen, I32 utf8)
{
+ return FALSE;
}
#endif /* NO_MATHOMS */
End of Patch.