Opened 15 years ago

Closed 15 years ago

#3926 closed Bug report (fixed)

Mismatching allocation and deallocation: CNetConfWizard::m_pSendBuffer

Reported by: dvice_null Owned by:
Priority: normal Component: Unknown
Keywords: Cc:
Component version: Operating system type:
Operating system version:

Description

In file: src/interface/netconfwizard.cpp:315
You delete the pointer without [] characters

delete m_pSendBuffer;

But on line 665 it is created with the []
m_pSendBuffer = new char[len + 1];

This is illegal in C++. If memory is allocated with [] it should be deleted with [] also. Please check and fix if I'm not mistaken.

Change History (1)

comment:1 by Tim Kosse, 15 years ago

Resolution: fixed
Status: newclosed

Thanks once more.

Note: See TracTickets for help on using tickets.