diff options
| author | Gavin Andresen <[email protected]> | 2012-03-26 12:31:06 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-03-26 12:31:06 -0700 |
| commit | c289d95d6bb3105a67b96a697ddb9dd773cf1033 (patch) | |
| tree | 508e2cfdb851ef7ac863acc3a53001951fe95ef8 /src/qt/qtipcserver.cpp | |
| parent | Merge pull request #990 from sipa/doc (diff) | |
| parent | Disable bitcoin: URI handling on Windows for the 0.6 release (diff) | |
| download | discoin-c289d95d6bb3105a67b96a697ddb9dd773cf1033.tar.xz discoin-c289d95d6bb3105a67b96a697ddb9dd773cf1033.zip | |
Merge pull request #991 from gavinandresen/disableWinURI
Disable bitcoin: URI handling on Windows for the 0.6 release
Diffstat (limited to 'src/qt/qtipcserver.cpp')
| -rw-r--r-- | src/qt/qtipcserver.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qt/qtipcserver.cpp b/src/qt/qtipcserver.cpp index 7f5d04033..8b9270e17 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]; |