bug fix: close unclosed file id, #438

time-shift
Houtan Bastani 2013-12-02 12:30:38 +01:00
parent d8d0f2b8cc
commit 22949820be
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ function [options_, oo_]=ms_compute_mdd(M_, options_, oo_)
% SPECIAL REQUIREMENTS % SPECIAL REQUIREMENTS
% none % none
% Copyright (C) 2011 Dynare Team % Copyright (C) 2011-2013 Dynare Team
% %
% This file is part of Dynare. % This file is part of Dynare.
% %
@ -75,5 +75,6 @@ if exist(mdd_filename,'file')
end end
oo_.ms.mueller_log_mdd = muller_mdd; oo_.ms.mueller_log_mdd = muller_mdd;
oo_.ms.bridged_log_mdd = bridge_mdd; oo_.ms.bridged_log_mdd = bridge_mdd;
fclose(mdd_fid);
end end
end end