aboutsummaryrefslogtreecommitdiff
path: root/src/qt/qtipcserver.cpp
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2012-03-26 12:18:24 -0400
committerGavin Andresen <gavinandresen@gmail.com>2012-03-26 12:18:24 -0400
commit7b90edb5a6cada7176012d09d748847b5f966585 (patch)
treedd5d732cd00d91ed0797731f368249e3b64c204b /src/qt/qtipcserver.cpp
parent01a196e08db49d83cf6c5abd8a799c56dcfef503 (diff)
downloadbitcoin-7b90edb5a6cada7176012d09d748847b5f966585.tar.xz
Disable bitcoin: URI handling on Windows for the 0.6 release
Diffstat (limited to 'src/qt/qtipcserver.cpp')
-rw-r--r--src/qt/qtipcserver.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qt/qtipcserver.cpp b/src/qt/qtipcserver.cpp
index 7f5d040338..8b9270e178 100644
--- a/src/qt/qtipcserver.cpp
+++ b/src/qt/qtipcserver.cpp
@@ -48,6 +48,12 @@ void ipcInit()
// TODO: implement bitcoin: URI handling the Mac Way
return;
#endif
+#ifdef WIN32
+ // TODO: THOROUGHLY test boost::interprocess fix,
+ // and make sure there are no Windows argument-handling exploitable
+ // problems.
+ return;
+#endif
message_queue* mq;
char strBuf[257];