diff options
| author | Gavin Andresen <[email protected]> | 2012-03-26 15:31:32 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-03-26 15:31:32 -0400 |
| commit | c698633447b95cd69113676a5cc4d554ba408e14 (patch) | |
| tree | ba40fa7775e7d5cbc4042b0c8d743dfa34554bab /src/qt/qtipcserver.cpp | |
| parent | Merge branch 'deladdr' of https://github.com/sipa/bitcoin (diff) | |
| parent | Merge pull request #991 from gavinandresen/disableWinURI (diff) | |
| download | discoin-c698633447b95cd69113676a5cc4d554ba408e14.tar.xz discoin-c698633447b95cd69113676a5cc4d554ba408e14.zip | |
Merge branch 'master' of github.com:bitcoin/bitcoin
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]; |