From 236b017d57ac7eeb6b39c2b7645813ef052c3509 Mon Sep 17 00:00:00 2001 From: Johannes Schlatow Date: Fri, 11 Mar 2011 00:54:43 +0100 Subject: [PATCH] Merge/Uri support - fixed autopush bug where e.g. 'ssh://' was omitted (Uri::parse() was wrongly modifying the data member) --- src/Uri.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uri.cpp b/src/Uri.cpp index 6695b947d..36791ff25 100644 --- a/src/Uri.cpp +++ b/src/Uri.cpp @@ -198,7 +198,7 @@ void Uri::parse () } std::string::size_type pos; - std::string uripart; + std::string data = this->data; std::string pathDelimiter = "/"; user = "";