Change 26643 by [EMAIL PROTECTED] on 2006/01/04 13:02:18
Fix some compilation warnings
Affected files ...
... //depot/perl/pp_hot.c#446 edit
Differences ...
==== //depot/perl/pp_hot.c#446 (text) ====
Index: perl/pp_hot.c
--- perl/pp_hot.c#445~26562~ 2006-01-02 02:56:05.000000000 -0800
+++ perl/pp_hot.c 2006-01-04 05:02:18.000000000 -0800
@@ -201,8 +201,8 @@
dPOPTOPssrl;
bool lbyte;
STRLEN rlen;
- const char *rpv;
- bool rbyte;
+ const char *rpv = 0;
+ bool rbyte = FALSE;
bool rcopied = FALSE;
if (TARG == right && right != left) {
End of Patch.