Re: SvOPV() or SvPV_nolen() or ...
authorKenneth Albanowski <kjahds@kjahds.com>
Sat, 23 Jan 1999 21:52:15 +0000 (16:52 -0500)
committerGurusamy Sarathy <gsar@cpan.org>
Sun, 14 Feb 1999 10:03:51 +0000 (10:03 +0000)
Message-ID: <Pine.LNX.3.93.990123212857.446B-100000@kjahds.kjahds.com>

p4raw-id: //depot/perl@2913

pod/perlguts.pod

index ce8c182..9c4831f 100644 (file)
@@ -103,6 +103,15 @@ be accessed in thread-local storage in threaded Perl.  In any case, remember
 that Perl allows arbitrary strings of data that may both contain NULs and
 might not be terminated by a NUL.
 
+Also remember that C doesn't allow you to safely say C<foo(SvPV(s, len),
+len);>. It might work with your compiler, but it won't work for everyone.
+Break this sort of statement up into separate assignments:
+
+       STRLEN len;
+       char * ptr;
+       ptr = SvPV(len);
+       foo(ptr, len);
+
 If you want to know if the scalar value is TRUE, you can use:
 
     SvTRUE(SV*)