aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2003-02-17 09:26:13 +0000
committertradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2003-02-17 09:26:13 +0000
commitaea5b998387a2affaa38e73ed30c45750d2ccdac (patch)
tree467d0aa3d0c03ea2692dd4d8b272c63e25fd1909
parentf582f9a9563c500c6d6d474a1f3734a29842e32a (diff)
The GH->data pointer wasn't set by PUGHi_EnableScalarGroupStorage().
This closes PR CactusPUGH/1381. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@406 b61c5cb5-eaca-4651-9a7a-d64986f99364
-rw-r--r--src/Storage.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Storage.c b/src/Storage.c
index 4060546..b97da14 100644
--- a/src/Storage.c
+++ b/src/Storage.c
@@ -1587,6 +1587,9 @@ static int PUGHi_EnableScalarGroupStorage (pGH *pughGH,
retval++;
}
}
+
+ /* set the variable's data pointer in the cGH structure */
+ ((cGH *) pughGH->callerid)->data[variable+first_var][level] = temp;
}
}