Title: [opsview-perl] [760] Fixed issue in SOAP::Lite (reported by Eleni_Lianou - https://rt.cpan.org/Public/Bug/Display.html?id=78692)
Revision
760
Author
tvoon
Date
2012-11-30 04:07:10 +0000 (Fri, 30 Nov 2012)

Log Message

Fixed issue in SOAP::Lite (reported by Eleni_Lianou - https://rt.cpan.org/Public/Bug/Display.html?id=78692)

Modified Paths

Added Paths

Modified: trunk/CHANGES
===================================================================
--- trunk/CHANGES	2012-11-30 04:05:39 UTC (rev 759)
+++ trunk/CHANGES	2012-11-30 04:07:10 UTC (rev 760)
@@ -1,3 +1,7 @@
+4.2.1
+    Fixed SOAP::Lite issue with deep trees (https://rt.cpan.org/Public/Bug/Display.html?id=78692)
+    Added Catalyst-Plugin-Cache-BerkeleyDB
+
 4.2.0
     Added DBIx::Class::DateTime::Epoch and its dependancies, for the new audodiscovery_scans table:
         Time::Warp

Added: trunk/patches/SOAP-Lite/01-incorrect-parameters-RT78692.patch
===================================================================
--- trunk/patches/SOAP-Lite/01-incorrect-parameters-RT78692.patch	                        (rev 0)
+++ trunk/patches/SOAP-Lite/01-incorrect-parameters-RT78692.patch	2012-11-30 04:07:10 UTC (rev 760)
@@ -0,0 +1,12 @@
+diff -ur SOAP-Lite-0.715.original//lib/SOAP/Lite.pm SOAP-Lite-0.715/lib/SOAP/Lite.pm
+--- SOAP-Lite-0.715.original//lib/SOAP/Lite.pm	2012-07-15 09:35:18.000000000 +0000
++++ SOAP-Lite-0.715/lib/SOAP/Lite.pm	2012-11-30 04:01:56.000000000 +0000
+@@ -1990,7 +1990,7 @@
+ sub _traverse {
+     my ($self, $pointer, $itself, $path, @path) = @_;
+ 
+-    die "Incorrect parameter" unless $itself =~/^\d$/;
++    die "Incorrect parameter" unless $itself =~/^\d+$/;
+ 
+     if ($path && substr($path, 0, 1) eq '{') {
+         $path = join '/', $path, shift @path while @path && $path !~ /}/;

_______________________________________________
Opsview-checkins mailing list
[email protected]
http://lists.opsview.org/lists/listinfo/opsview-checkins

Reply via email to