You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2015/08/28 18:07:06 UTC

trafficserver git commit: TS-3873: fix uninitialized return

Repository: trafficserver
Updated Branches:
  refs/heads/master 4f2967e9f -> 70409d223


TS-3873: fix uninitialized return


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/70409d22
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/70409d22
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/70409d22

Branch: refs/heads/master
Commit: 70409d22307a05d59be28be14e821b61361246bb
Parents: 4f2967e
Author: James Peach <jp...@apache.org>
Authored: Fri Aug 28 09:07:03 2015 -0700
Committer: James Peach <jp...@apache.org>
Committed: Fri Aug 28 09:07:03 2015 -0700

----------------------------------------------------------------------
 mgmt/api/TSControlMain.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/70409d22/mgmt/api/TSControlMain.cc
----------------------------------------------------------------------
diff --git a/mgmt/api/TSControlMain.cc b/mgmt/api/TSControlMain.cc
index 5c711cf..6225773 100644
--- a/mgmt/api/TSControlMain.cc
+++ b/mgmt/api/TSControlMain.cc
@@ -1144,7 +1144,7 @@ handle_record_describe(int fd, void *req, size_t reqlen)
 
 done:
   ats_free(name);
-  return match.err;
+  return ret;
 }
 
 struct control_message_handler {