summaryrefslogtreecommitdiffstats
path: root/src/map/mapper/mapperCutUtils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/mapper/mapperCutUtils.c')
-rw-r--r--src/map/mapper/mapperCutUtils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/mapper/mapperCutUtils.c b/src/map/mapper/mapperCutUtils.c
index 4450cb04..42bdd103 100644
--- a/src/map/mapper/mapperCutUtils.c
+++ b/src/map/mapper/mapperCutUtils.c
@@ -161,7 +161,8 @@ int Map_NodeGetLeafPhase( Map_Node_t * pNode, int fPhase, int iLeaf )
***********************************************************************/
Map_Cut_t * Map_CutListAppend( Map_Cut_t * pSetAll, Map_Cut_t * pSets )
{
- Map_Cut_t * pPrev, * pTemp;
+ Map_Cut_t * pPrev = NULL; // Suppress "might be used uninitialized"
+ Map_Cut_t * pTemp;
if ( pSetAll == NULL )
return pSets;
if ( pSets == NULL )