Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
Krfb
Commits
c14d37e5
Commit
c14d37e5
authored
Feb 21, 2022
by
Aleix Pol Gonzalez
🐧
Committed by
Aleix Pol Gonzalez
Mar 08, 2022
Browse files
virtualmonitor: Return 1 if it failed to start
parent
2d391672
Pipeline
#148658
passed with stage
in 1 minute and 30 seconds
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
krfb/main-virtualmonitor.cpp
View file @
c14d37e5
...
...
@@ -167,7 +167,9 @@ int main(int argc, char *argv[])
sigemptyset
(
&
sigs
);
sigaddset
(
&
sigs
,
SIGPIPE
);
sigprocmask
(
SIG_BLOCK
,
&
sigs
,
nullptr
);
server
.
start
();
if
(
!
server
.
start
())
{
return
1
;
}
return
app
.
exec
();
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment