aboutsummaryrefslogtreecommitdiff
path: root/src/GHExtension.c
diff options
context:
space:
mode:
authorgoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-07-09 15:37:07 +0000
committergoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-07-09 15:37:07 +0000
commita7745b5f75f76791d3e455585ab128cbc92f6e3c (patch)
treee3f410a4b18437c162eb82029484de820db3f5fc /src/GHExtension.c
parent356596ae00efd05734e584beb39b5fcacc993add (diff)
Fixing assignment of too much memory.
Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@236 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/GHExtension.c')
-rw-r--r--src/GHExtension.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GHExtension.c b/src/GHExtension.c
index d9e8bb2..2cb80b9 100644
--- a/src/GHExtension.c
+++ b/src/GHExtension.c
@@ -81,7 +81,7 @@ void *PUGH_SetupGH(tFleshConfig *config,
}
/* Set the identity for this pGH. For now this is an empty string. */
- newGH->identity_string = (char *) calloc (1, sizeof (char *));
+ newGH->identity_string = (char *) calloc (1, sizeof (char));
/* Set up groups on the GH */