mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 23:49:35 -05:00
fixed uninitialised memory read in test libretroshare_gxs.gxs_grp_sync_delayed
This commit is contained in:
parent
7d0845ecc5
commit
64b9e3477a
@ -15,7 +15,8 @@ using namespace rs_nxs_test;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
NxsGrpSync::NxsGrpSync(RsGcxs* circle, RsGixsReputation* reputation)
|
NxsGrpSync::NxsGrpSync(RsGcxs* circle, RsGixsReputation* reputation):
|
||||||
|
mServType(0)
|
||||||
{
|
{
|
||||||
|
|
||||||
int numPeers = 2;
|
int numPeers = 2;
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
using namespace rs_nxs_test;
|
using namespace rs_nxs_test;
|
||||||
|
|
||||||
rs_nxs_test::NxsMsgSync::NxsMsgSync()
|
rs_nxs_test::NxsMsgSync::NxsMsgSync()
|
||||||
: mPgpUtils(NULL) {
|
: mPgpUtils(NULL), mServType(0) {
|
||||||
int numPeers = 2;
|
int numPeers = 2;
|
||||||
|
|
||||||
// create 2 peers
|
// create 2 peers
|
||||||
|
Loading…
Reference in New Issue
Block a user