Click here to Skip to main content
15,891,976 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Heap error on std::string deletion from local function Pin
Fred Ackers22-Dec-11 9:33
Fred Ackers22-Dec-11 9:33 
GeneralRe: Heap error on std::string deletion from local function Pin
Chris Losinger22-Dec-11 9:55
professionalChris Losinger22-Dec-11 9:55 
GeneralRe: Heap error on std::string deletion from local function Pin
Fred Ackers22-Dec-11 10:44
Fred Ackers22-Dec-11 10:44 
AnswerRe: Heap error on std::string deletion from local function Pin
Erudite_Eric22-Dec-11 4:28
Erudite_Eric22-Dec-11 4:28 
AnswerRe: Heap error on std::string deletion from local function Pin
Erudite_Eric23-Dec-11 23:48
Erudite_Eric23-Dec-11 23:48 
GeneralRe: Heap error on std::string deletion from local function Pin
Fred Ackers24-Dec-11 7:16
Fred Ackers24-Dec-11 7:16 
GeneralRe: Heap error on std::string deletion from local function Pin
Erudite_Eric26-Dec-11 0:57
Erudite_Eric26-Dec-11 0:57 
AnswerRe: Heap error on std::string deletion from local function Pin
Mikhail Semenov23-Jan-12 3:50
Mikhail Semenov23-Jan-12 3:50 
In Win32, when you pass an object through DLL boundaries you cannot allocate memory in one module (DLL) and delete it in another module (your main program, another DLL), unless you use the Global Heap for allocation/deallocation. Another approach is to create a deallocator function in the same module and pass it to another module to delete the object.

In Win64, there will be no problem: you can allocate objects in one module and delete them in another.
Questionsorting list using hexadecimal values Pin
VCProgrammer21-Dec-11 21:20
VCProgrammer21-Dec-11 21:20 
AnswerRe: sorting list using hexadecimal values Pin
Richard MacCutchan21-Dec-11 22:00
mveRichard MacCutchan21-Dec-11 22:00 
GeneralRe: sorting list using hexadecimal values Pin
Mohibur Rashid21-Dec-11 22:26
professionalMohibur Rashid21-Dec-11 22:26 
AnswerRe: sorting list using hexadecimal values Pin
CPallini21-Dec-11 22:50
mveCPallini21-Dec-11 22:50 
Questioncrash in memory heap allocation - windows 7 - Unicode project Pin
zon_cpp21-Dec-11 21:04
zon_cpp21-Dec-11 21:04 
AnswerRe: crash in memory heap allocation - windows 7 - Unicode project Pin
Richard MacCutchan21-Dec-11 22:05
mveRichard MacCutchan21-Dec-11 22:05 
GeneralRe: crash in memory heap allocation - windows 7 - Unicode project Pin
zon_cpp21-Dec-11 22:08
zon_cpp21-Dec-11 22:08 
GeneralRe: crash in memory heap allocation - windows 7 - Unicode project Pin
Mohibur Rashid21-Dec-11 22:31
professionalMohibur Rashid21-Dec-11 22:31 
GeneralRe: crash in memory heap allocation - windows 7 - Unicode project Pin
zon_cpp21-Dec-11 22:50
zon_cpp21-Dec-11 22:50 
GeneralRe: crash in memory heap allocation - windows 7 - Unicode project Pin
Richard MacCutchan22-Dec-11 1:00
mveRichard MacCutchan22-Dec-11 1:00 
GeneralRe: crash in memory heap allocation - windows 7 - Unicode project Pin
Richard MacCutchan21-Dec-11 22:51
mveRichard MacCutchan21-Dec-11 22:51 
AnswerRe: crash in memory heap allocation - windows 7 - Unicode project Pin
Erudite_Eric22-Dec-11 0:14
Erudite_Eric22-Dec-11 0:14 
AnswerRe: crash in memory heap allocation - windows 7 - Unicode project Pin
Chuck O'Toole22-Dec-11 4:26
Chuck O'Toole22-Dec-11 4:26 
AnswerRe: crash in memory heap allocation - windows 7 - Unicode project Pin
Albert Holguin22-Dec-11 5:21
professionalAlbert Holguin22-Dec-11 5:21 
Questionabout DLL dependencies Pin
ryan218921-Dec-11 5:37
ryan218921-Dec-11 5:37 
AnswerRe: about DLL dependencies Pin
Richard Andrew x6422-Dec-11 10:10
professionalRichard Andrew x6422-Dec-11 10:10 
AnswerRe: about DLL dependencies Pin
Lactoferrin22-Dec-11 21:14
Lactoferrin22-Dec-11 21:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.