Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
---
Description
I'm using git-svn to wotk with subversion. Whenever there is a problem with network connection, it frequently prints the following warning: Use of uninitialized value in concatenation (.) or string at <...>/SVN/Core.pm line 584. Could you please apply the following simple patch to bindings/swig/perl/native/Core.pm to fix it? Index: Core.pm =================================================================== --- Core.pm (revision 1146621) +++ Core.pm (working copy) @@ -581,7 +581,7 @@ my $error_message = $svn_error->strerror(); while ($svn_error) { - $error_message .= ': ' . $svn_error->message(); + $error_message .= ': ' . ($svn_error->message() || ""); $svn_error = $svn_error->child(); } return $error_message;
Original issue reported by infnty