Opened 16 years ago
Closed 16 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.
Note:
See TracTickets
for help on using tickets.
Thanks once more.