ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Compress-LZF/LZF.xs
(Generate patch)

Comparing Compress-LZF/LZF.xs (file contents):
Revision 1.11 by root, Wed Apr 10 14:11:48 2002 UTC vs.
Revision 1.12 by root, Fri May 17 18:59:24 2002 UTC

230 230
231 SvGETMAGIC (sv); 231 SvGETMAGIC (sv);
232 232
233 if (!SvOK (sv)) 233 if (!SvOK (sv))
234 XPUSHs (sv_2mortal (newSVpvn ("\02", 1))); /* 02 == MAGIC_undef */ 234 XPUSHs (sv_2mortal (newSVpvn ("\02", 1))); /* 02 == MAGIC_undef */
235 else if (SvROK (sv)
235 else if (SvTYPE(sv) != SVt_IV 236 || (SvTYPE(sv) != SVt_IV
236 && SvTYPE(sv) != SVt_NV 237 && SvTYPE(sv) != SVt_NV
237 && SvTYPE(sv) != SVt_PV 238 && SvTYPE(sv) != SVt_PV
238 && SvTYPE(sv) != SVt_PVMG+99999) /* mstore */ 239 && SvTYPE(sv) != SVt_PVMG)) /* mstore */
239 { 240 {
240 int deref = !SvROK (sv); 241 int deref = !SvROK (sv);
241 242
242 if (!storable_mstore) 243 if (!storable_mstore)
243 need_storable (); 244 need_storable ();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines