aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-10-13 01:52:56 +0200
committerYang Tse <yangsita@gmail.com>2011-10-13 01:52:56 +0200
commit880cf0bedc7bae7a937bae7fc54bb7b7d8048d3a (patch)
tree6f44d3e2a564689f2515b00bcd837dc4112c56e5 /lib
parentbff78cc18e8dc22926d4b0219e6fac08758ed790 (diff)
url.c: make line shorter than 80 chars
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 5b00ca750..e9451b67f 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -4664,7 +4664,8 @@ static void reuse_conn(struct connectdata *old_conn,
conn->host=old_conn->host;
}
else
- Curl_safefree(old_conn->host.rawalloc); /* free the newly allocated name buffer */
+ /* free the newly allocated name buffer */
+ Curl_safefree(old_conn->host.rawalloc);
/* persist connection info in session handle */
Curl_persistconninfo(conn);