summaryrefslogtreecommitdiff
path: root/table11.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-30 20:19:43 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-30 20:19:43 -0700
commit93812aa7950342c809a9dcbd9d50379c050b51ac (patch)
tree73fa307d6b4a52666620ee8f273c678514b422c1 /table11.c
parent7392f2b780ab3346014634d2532f3b8ca99101a6 (diff)
downloadxscope-93812aa7950342c809a9dcbd9d50379c050b51ac.tar.gz
Clean up existing malloc calls
Remove unnecessary casts from (void *) Ensure return value is checked. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'table11.c')
-rw-r--r--table11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/table11.c b/table11.c
index bfcef73..02dc5fb 100644
--- a/table11.c
+++ b/table11.c
@@ -147,7 +147,7 @@ CreateValueRec (
int i;
bucket = &buckets[HASH(key)];
- value = (ValuePtr) malloc (sizeof (ValueRec) + size * sizeof (unsigned long));
+ value = malloc (sizeof (ValueRec) + (size * sizeof (unsigned long)));
if (!value)
return;
value->values = (unsigned long *) (value + 1);