aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reltool/src/reltool.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2012-02-16 14:21:19 +0100
committerSiri Hansen <[email protected]>2012-03-19 09:48:54 +0100
commit0bc47607cad0c9ad475a7c0a8e7aa5633d00ceb5 (patch)
tree8fd92d7abf38e6133da1d9312649cf6e67c391a7 /lib/reltool/src/reltool.erl
parent6f5e3e16019a3a4f9e9033d185b9c487967ad5fa (diff)
downloadotp-0bc47607cad0c9ad475a7c0a8e7aa5633d00ceb5.tar.gz
otp-0bc47607cad0c9ad475a7c0a8e7aa5633d00ceb5.tar.bz2
otp-0bc47607cad0c9ad475a7c0a8e7aa5633d00ceb5.zip
[reltool] Fix badmatch when starting GUI
OTP-9792 Start of reltool GUI sometimes crashes with a badmatch in reltool_sys_win:do_init/1 because the #sys record fetched with reltool_server:get_sys/1 differs from the #sys record returned from reltool_server:start_link/1. This has been corrected. reltool_server:start_link/1 no longer retuns the #sys record.
Diffstat (limited to 'lib/reltool/src/reltool.erl')
-rw-r--r--lib/reltool/src/reltool.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/reltool/src/reltool.erl b/lib/reltool/src/reltool.erl
index 54eb1ca9e1..a2b1c9468c 100644
--- a/lib/reltool/src/reltool.erl
+++ b/lib/reltool/src/reltool.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2009-2011. All Rights Reserved.
+%% Copyright Ericsson AB 2009-2012. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -66,7 +66,7 @@ start_link(Options) when is_list(Options) ->
-spec start_server(options()) -> {ok, server_pid()} | {error, reason()}.
start_server(Options) ->
case reltool_server:start_link(Options) of
- {ok, ServerPid, _Common, _Sys} ->
+ {ok, ServerPid, _Common} ->
{ok, ServerPid};
{error, Reason} ->
{error, lists:flatten(io_lib:format("~p", [Reason]))}