summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli <ananth@in.ibm.com>2009-05-13 22:08:37 +0530
committerAnanth N Mavinakayanahalli <ananth@in.ibm.com>2009-05-13 22:08:37 +0530
commit508e476d212146602499c9bf1283e15ee9f2f037 (patch)
tree2566d65cc6af2c170250b6bf65203b8af24b3b41 /runtime
parent90562d7d561c26b25aa73082bd33eaa399688187 (diff)
downloadsystemtap-steved-508e476d212146602499c9bf1283e15ee9f2f037.tar.gz
systemtap-steved-508e476d212146602499c9bf1283e15ee9f2f037.tar.xz
systemtap-steved-508e476d212146602499c9bf1283e15ee9f2f037.zip
Initialize aptr in runtime/map.c and keep gcc-4.4 happy
Diffstat (limited to 'runtime')
-rw-r--r--runtime/map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/map.c b/runtime/map.c
index 190ba91b..74467f30 100644
--- a/runtime/map.c
+++ b/runtime/map.c
@@ -719,7 +719,7 @@ static MAP _stp_pmap_agg (PMAP pmap)
{
int i, hash;
MAP m, agg;
- struct map_node *ptr, *aptr;
+ struct map_node *ptr, *aptr = NULL;
struct hlist_head *head, *ahead;
struct hlist_node *e, *f;