diff options
author | marha <marha@users.sourceforge.net> | 2009-10-17 17:31:04 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-10-17 17:31:04 +0000 |
commit | 27bc6d5e30150409259aa9030e668e801eb0b5a6 (patch) | |
tree | 622faefa2730e70c58bcca13c3e38eebba442f60 /tools/mhmake/src/util.cpp | |
parent | 821ad28aad2f8c3cf4bbef9c8ac053943603cc67 (diff) | |
download | vcxsrv-27bc6d5e30150409259aa9030e668e801eb0b5a6.tar.gz vcxsrv-27bc6d5e30150409259aa9030e668e801eb0b5a6.tar.bz2 vcxsrv-27bc6d5e30150409259aa9030e668e801eb0b5a6.zip |
Solved crash when svn command is not found.
Diffstat (limited to 'tools/mhmake/src/util.cpp')
-rw-r--r-- | tools/mhmake/src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/util.cpp b/tools/mhmake/src/util.cpp index f89009206..86b6ffcd1 100644 --- a/tools/mhmake/src/util.cpp +++ b/tools/mhmake/src/util.cpp @@ -279,7 +279,7 @@ loadedmakefile::loadedmakefile_statics::loadedmakefile_statics() string SvnCommand=SearchCommand("svn",EXEEXT);
Ret=OsExeCommand(SvnCommand,string(" info ")+m_MhMakeConf->GetQuotedFullFileName(),false,&Output);
}
- catch (int)
+ catch (string Message)
{
Ret=false;
}
|