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
Marco Bubke
flatpak-qt-creator
Commits
8c14daf9
Commit
8c14daf9
authored
Feb 18, 2009
by
Oswald Buddenhagen
Browse files
do not create bizarre or even invalid fifo names under windows
parent
7587f6e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/outputcollector.cpp
View file @
8c14daf9
...
...
@@ -80,7 +80,7 @@ bool OutputCollector::listen()
return
m_server
->
isListening
();
m_server
=
new
QLocalServer
(
this
);
connect
(
m_server
,
SIGNAL
(
newConnection
()),
SLOT
(
newConnectionAvailable
()));
return
m_server
->
listen
(
QLatin1String
(
"creator-
"
)
+
QCoreApplication
::
applicationPid
());
// XXX how to make that secure?
return
m_server
->
listen
(
QLatin1String
(
"creator-
%1"
).
arg
(
QCoreApplication
::
applicationPid
())
)
;
// XXX how to make that secure?
#else
if
(
!
m_serverPath
.
isEmpty
())
return
true
;
...
...
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