|
From: <sv...@va...> - 2015-05-11 21:02:06
|
Author: philippe
Date: Mon May 11 22:02:00 2015
New Revision: 15215
Log:
Add back vg_assert(xa); that was removed by error in r15211
Modified:
trunk/coregrind/m_xarray.c
Modified: trunk/coregrind/m_xarray.c
==============================================================================
--- trunk/coregrind/m_xarray.c (original)
+++ trunk/coregrind/m_xarray.c Mon May 11 22:02:00 2015
@@ -127,7 +127,7 @@
inline void* VG_(indexXA) ( const XArray* xa, Word n )
{
- // vg_assert(xa);
+ vg_assert(xa);
// vg_assert(n >= 0); If n negative, the UWord conversion will make
// it bigger than usedsizeE.
vg_assert((UWord)n < xa->usedsizeE);
|