Apply patch from RT#57697
Florian Ragwitz [Wed, 14 Jul 2010 15:52:09 +0000 (17:52 +0200)]
perl/ChangeLog
perl/FCGI.XL

index c010ff2..3429217 100644 (file)
@@ -1,3 +1,5 @@
+    o Fix PRINT retval (Closes: RT#57697).
+
 Version 0.71 --      1 Apr 2010  <rafl@debian.org> Florian Ragwitz
     o Fix some more defined(%hash) warnings on perl 5.12.
 
index d24ee48..5bd85fa 100644 (file)
@@ -558,6 +558,8 @@ PRINT(stream, ...)
            ok = FALSE;
 
     RETVAL = ok ? &PL_sv_yes : &PL_sv_undef;
+    OUTPUT:
+        RETVAL
 
 int
 WRITE(stream, bufsv, len, ...)