|
From: <sv...@va...> - 2013-10-07 20:25:26
|
Author: florian
Date: Mon Oct 7 20:25:17 2013
New Revision: 13625
Log:
Remove unused variable (and associated compiler warning).
Modified:
trunk/coregrind/m_oset.c
Modified: trunk/coregrind/m_oset.c
==============================================================================
--- trunk/coregrind/m_oset.c (original)
+++ trunk/coregrind/m_oset.c Mon Oct 7 20:25:17 2013
@@ -864,7 +864,7 @@
// function supplied to VG_(OSetGen_Create).
void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k)
{
- AvlNode *n, *t;
+ AvlNode *t;
Word cmpresS; /* signed */
UWord cmpresU; /* unsigned */
@@ -874,7 +874,6 @@
if (!oset->root)
return;
- n = NULL;
// We need to do regular search and fill in the stack.
t = oset->root;
|