Click here to Skip to main content
15,909,498 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralDatashowing problem want to get rid of from if-else statement Pin
Y_Kaushik20-Dec-07 23:53
Y_Kaushik20-Dec-07 23:53 
GeneralRe: Datashowing problem want to get rid of from if-else statement Pin
Hamid_RT21-Dec-07 0:02
Hamid_RT21-Dec-07 0:02 
GeneralRe: Datashowing problem want to get rid of from if-else statement Pin
Cedric Moonen21-Dec-07 0:13
Cedric Moonen21-Dec-07 0:13 
GeneralRe: Datashowing problem want to get rid of from if-else statement Pin
Cedric Moonen21-Dec-07 0:11
Cedric Moonen21-Dec-07 0:11 
GeneralRe: Datashowing problem want to get rid of from if-else statement Pin
Matthew Faithfull21-Dec-07 0:11
Matthew Faithfull21-Dec-07 0:11 
GeneralRe: Datashowing problem want to get rid of from if-else statement Pin
Y_Kaushik21-Dec-07 19:08
Y_Kaushik21-Dec-07 19:08 
GeneralDynamically providing version information to a exe Pin
neha.agarwal2720-Dec-07 22:50
neha.agarwal2720-Dec-07 22:50 
GeneralRe: Dynamically providing version information to a exe Pin
jhwurmbach20-Dec-07 23:08
jhwurmbach20-Dec-07 23:08 
GeneralRe: Dynamically providing version information to a exe Pin
Chris Losinger21-Dec-07 5:45
professionalChris Losinger21-Dec-07 5:45 
GeneralChecking the camera is connecte or not Pin
Deepu Antony20-Dec-07 22:26
Deepu Antony20-Dec-07 22:26 
General"imapi.h" file missing - SDK version Pin
palanirajan20-Dec-07 22:04
palanirajan20-Dec-07 22:04 
GeneralRe: "imapi.h" file missing - SDK version Pin
ashishbhatt20-Dec-07 22:12
ashishbhatt20-Dec-07 22:12 
GeneralRe: "imapi.h" file missing - SDK version Pin
Cedric Moonen20-Dec-07 22:27
Cedric Moonen20-Dec-07 22:27 
Generalsystem tray - right click option Pin
Paulraj G20-Dec-07 21:28
Paulraj G20-Dec-07 21:28 
GeneralRe: system tray - right click option Pin
ashishbhatt20-Dec-07 21:47
ashishbhatt20-Dec-07 21:47 
GeneralRe: system tray - right click option Pin
Paulraj G20-Dec-07 23:27
Paulraj G20-Dec-07 23:27 
AnswerRe: system tray - right click option Pin
rajneshmalik21-Dec-07 0:32
rajneshmalik21-Dec-07 0:32 
GeneralRe: system tray - right click option Pin
Mark Salsbery21-Dec-07 8:36
Mark Salsbery21-Dec-07 8:36 
QuestionSTL, or MFC's Array/List? Pin
code_discuss20-Dec-07 20:42
code_discuss20-Dec-07 20:42 
GeneralRe: STL, or MFC's Array/List? Pin
Christian Graus20-Dec-07 21:09
protectorChristian Graus20-Dec-07 21:09 
AnswerRe: STL, or MFC's Array/List? Pin
Rajith21-Dec-07 20:45
Rajith21-Dec-07 20:45 
GeneralEncode/Decode audio/video using avcodec Pin
Don Box20-Dec-07 20:02
Don Box20-Dec-07 20:02 
Questionstatic class member method confusion... Pin
fantasy121520-Dec-07 19:30
fantasy121520-Dec-07 19:30 
GeneralRe: static class member method confusion... Pin
Cedric Moonen20-Dec-07 20:10
Cedric Moonen20-Dec-07 20:10 
QuestionHow to release the memory ..? Pin
shikha12320-Dec-07 19:28
shikha12320-Dec-07 19:28 
Hello ..

can somebody help me in ..

Scenario ::
for the Image data processing i write code in c++ where the
pBuffer have the image data

unsigned char * pBuffer ;

pBuffer = new unsigned char[someSize];

// Did Some processsing by copying the data in pBuffer

Now finally Wrote the data from pBuffer. just after that i tried to release the memory.. for that

if(pBuffer != NULL)
delete pBuffer;

For the single run it does not give me any error but consequently if i ran for second Image it gives me

Debug Error !!
DAMAGE : After Normal block (#8081)at some address


please help me ..!!

Thanks in advance


Shikha

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.