https://github.com/jwatte/EPIC/blob/master/Extrapolator.cpp#L126
oVel is an argument and passed as pointer to ReadPosition(), so sizeof(oVel) returns the size of a pointer.
Fix
Replace sizeof(oVel) with sizeof(Type) * Count
memset(oVel, 0, sizeof(Type) * Count);