From 014ddc8724800bb6e292dc4b49b6adb1a1b615dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 23 Jun 2005 16:29:51 +0000 Subject: [PATCH] Now also sets fInitError when the app_server did not create the app (and not only drop into the debugger). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13237 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/app/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kits/app/Application.cpp b/src/kits/app/Application.cpp index 59403b9a93..df662f9323 100644 --- a/src/kits/app/Application.cpp +++ b/src/kits/app/Application.cpp @@ -1090,6 +1090,7 @@ BApplication::connect_to_app_server() fServerLink->SetSenderPort(serverPort); } else { fServerLink->SetSenderPort(-1); + fInitError = B_ERROR; debugger("BApplication: couldn't obtain new app_server comm port"); } }