]> Git Repo - VerusCoin.git/commitdiff
Fixes CID 1352706 uninitialized scalar field.
authorSimon <[email protected]>
Thu, 20 Oct 2016 18:05:30 +0000 (11:05 -0700)
committerSimon <[email protected]>
Thu, 20 Oct 2016 18:05:30 +0000 (11:05 -0700)
src/chainparamsbase.h

index 4369d0aef7e3c7dae75062c37fb6e33c899d20fe..33765f0fc84dd0fca400dd2b14ec151640ab5f4d 100644 (file)
@@ -29,7 +29,7 @@ public:
 protected:
     CBaseChainParams() {}
 
-    int nRPCPort;
+    int nRPCPort = 0;
     std::string strDataDir;
 };
 
This page took 0.042434 seconds and 4 git commands to generate.