Our website uses cookies to enhance your browsing experience.
Accept
to the top
close form

Fill out the form in 2 simple steps below:

Your contact information:

Step 1
Congratulations! This is your promo code!

Desired license type:

Step 2
Team license
Enterprise license
** By clicking this button you agree to our Privacy Policy statement
close form
Request our prices
New License
License Renewal
--Select currency--
USD
EUR
* By clicking this button you agree to our Privacy Policy statement

close form
Free PVS‑Studio license for Microsoft MVP specialists
* By clicking this button you agree to our Privacy Policy statement

close form
To get the licence for your open-source project, please fill out this form
* By clicking this button you agree to our Privacy Policy statement

close form
I am interested to try it on the platforms:
* By clicking this button you agree to our Privacy Policy statement

close form
check circle
Message submitted.

Your message has been sent. We will email you at


If you haven't received our response, please do the following:
check your Spam/Junk folder and click the "Not Spam" button for our message.
This way, you won't miss messages from our team in the future.

>
>
>
Examples of errors detected by the V598…

Examples of errors detected by the V598 diagnostic

V598. Memory manipulation function is used to work with a class object containing a virtual table pointer. The result of such an operation may be unexpected.


IPP Samples

V598 The 'memset' function is used to nullify the fields of '_MediaDataEx' class. Virtual table pointer will be damaged by this. vc1_spl umc_vc1_spl.cpp 131


class _MediaDataEx {
  ....
  virtual bool TryStrongCasting(
    pDynamicCastFunction pCandidateFunction) const;
  virtual bool TryWeakCasting(
    pDynamicCastFunction pCandidateFunction) const;
};

Status VC1Splitter::Init(SplitterParams& rInit)
{
  MediaDataEx::_MediaDataEx *m_stCodes;
  ....
  m_stCodes = (MediaDataEx::_MediaDataEx *)
    ippsMalloc_8u(START_CODE_NUMBER*2*sizeof(Ipp32s)+
                  sizeof(MediaDataEx::_MediaDataEx));
  ....
  memset(m_stCodes, 0,
    (START_CODE_NUMBER*2*sizeof(Ipp32s)+
    sizeof(MediaDataEx::_MediaDataEx)));
  ....
}

Similar errors can be found in some other places:

  • V598 The 'memset' function is used to nullify the fields of '_MediaDataEx' class. Virtual table pointer will be damaged by this. vc1_dec umc_vc1_video_decoder.cpp 641
  • V598 The 'memset' function is used to nullify the fields of 'AVS_DISASSEMBLING_CONTEXT' class. Virtual table pointer will be damaged by this. avs_enc umc_avs_enc_slice.cpp 45
  • V598 The 'memset' function is used to nullify the fields of 'AVS_DISASSEMBLING_CONTEXT' class. Virtual table pointer will be damaged by this. avs_enc umc_avs_enc_slice.cpp 29
  • And 11 additional diagnostic messages.

Coin3D

V598 The 'memcpy' function is used to copy the fields of 'SoPointDetail' class. Virtual table pointer will be damaged by this. soshape_primdata.cpp 202


class COIN_DLL_API SoDetail {
  ....
  virtual ~SoDetail();
  virtual SoDetail * copy(void) const = 0;
  ....
}

class SoPointDetail : public SoDetail {
};

void
soshape_primdata::shapeVertex(const SoPrimitiveVertex * const v)
{
  ....
  SoPointDetail* newparray = new SoPointDetail[this->arraySize];
  memcpy(newparray, this->pointDetails,
    sizeof(SoPointDetail)* this->counter);
  ....
}

SlimDX

V598 The 'memset' function is used to nullify the fields of 'SMember' class. Virtual table pointer will be damaged by this. effectnonruntime.cpp 1739


template<typename IBaseInterface>
struct TVariable : public IBaseInterface
{
  virtual BOOL IsValid() { .... }
  ....
};

struct SMember :
  public TVariable<TMember<ID3DX11EffectVariable> >
{
};

CEffectVectorOwner<SMember> m_pMemberInterfaces;

HRESULT CEffect::CopyMemberInterfaces( CEffect* pEffectSource )
{
  ....
  ZeroMemory( &m_pMemberInterfaces[i],
              sizeof(SMember) * ( Members - i ) );
  ....
}

Similar errors can be found in some other places:

  • V598 The 'memcpy' function is used to copy the fields of 'SType' class. Virtual table pointer will be damaged by this. effectload.cpp 1106
  • V598 The 'memset' function is used to nullify the fields of 'SType' class. Virtual table pointer will be damaged by this. effectload.cpp 1107

Miranda NG

V598 The 'memset' function is used to nullify the fields of 'CBaseCtrl' class. Virtual table pointer will be damaged by this. UInfoEx ctrl_base.cpp 77


class CBaseCtrl
{
  ....
  virtual void Release() { }
  virtual BOOL OnInfoChanged(MCONTACT hContact, LPCSTR pszProto);
  ....
};

CBaseCtrl::CBaseCtrl()
{
  ZeroMemory(this, sizeof(*this));
  _cbSize = sizeof(CBaseCtrl);
}

Similar errors can be found in some other places:

  • V598 The 'memset' function is used to nullify the fields of 'CBaseCtrl' class. Virtual table pointer will be damaged by this. UInfoEx ctrl_base.cpp 87
  • V598 The 'memset' function is used to nullify the fields of 'CBaseCtrl' class. Virtual table pointer will be damaged by this. UInfoEx ctrl_base.cpp 103

.NET CoreCLR

V598 The 'memcpy' function is used to copy the fields of 'GenTree' class. Virtual table pointer will be damaged by this. ClrJit compiler.hpp 1344


struct GenTree
{
  ....
  #if DEBUGGABLE_GENTREE
    virtual void DummyVirt() {}
  #endif // DEBUGGABLE_GENTREE
  ....
};

void GenTree::CopyFrom(const GenTree* src, Compiler* comp)
{
  ....
  memcpy(this, src, src->GetNodeSize());
  ....
}

When the preprocessor variable 'DEBUGGABLE_GENTREE' is declared, a virtual function is defined. Then the class contains a pointer to the virtual method table and cannot be copied that freely.


.NET CoreCLR

V598 The 'memcpy' function is used to copy the fields of 'GCStatistics' class. Virtual table pointer will be damaged by this. cee_wks gc.cpp 287


struct GCStatistics
    : public StatisticsBase
{
  ....
  virtual void Initialize();
  virtual void DisplayAndUpdate();
  ....
};

GCStatistics g_LastGCStatistics;

void GCStatistics::DisplayAndUpdate()
{
  ....
  memcpy(&g_LastGCStatistics, this, sizeof(g_LastGCStatistics));
  ....
}

GZDoom

V598 The 'memset' function is used to nullify the fields of 'FDecalTemplate' class. Virtual table pointer will be damaged by this. decallib.cpp 367


class FDecalTemplate : public FDecalBase { .... }

class FDecalBase
{
  ....
  virtual const FDecalTemplate *GetDecal () const;
  virtual void ReplaceDecalRef (FDecalBase *from, FDecalBase *to) = 0;
  ....
};