Click here to Skip to main content
15,914,500 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Regarding Your suggestion:: Pin
CPallini28-Jan-08 0:10
mveCPallini28-Jan-08 0:10 
GeneralRe: Regarding Your suggestion:: Pin
rowdy_vc++28-Jan-08 0:14
rowdy_vc++28-Jan-08 0:14 
GeneralRe: Regarding Your suggestion:: Pin
CPallini28-Jan-08 0:36
mveCPallini28-Jan-08 0:36 
GeneralRe: Regarding Your suggestion:: Pin
Iain Clarke, Warrior Programmer28-Jan-08 0:23
Iain Clarke, Warrior Programmer28-Jan-08 0:23 
GeneralOut of Memory Pin
Andre Rios27-Jan-08 23:33
Andre Rios27-Jan-08 23:33 
GeneralRe: Out of Memory Pin
Iain Clarke, Warrior Programmer27-Jan-08 23:39
Iain Clarke, Warrior Programmer27-Jan-08 23:39 
GeneralRe: Out of Memory Pin
Andre Rios29-Jan-08 22:31
Andre Rios29-Jan-08 22:31 
GeneralRead buffer into a string. Pin
CodingLover27-Jan-08 23:00
CodingLover27-Jan-08 23:00 
Hi all,

I add a file name(a string) into a buffer as follows.

int iL = strlen(m_strTemp.c_str()) + 1;// +1 for null-terminated
char *buff = new char[iL];
strcpy(buff, m_strTemp.c_str());


Then later I want to get that string from a buffer. So I do the following.

string *pp = new string(buff);


But gives an error on strlen.asm file as follows.

Unhandled exception at 0x102157d0 (msvcr71d.dll) in GroupServer.exe: 0xC0000005: 
Access violation reading location 0x00000000.


Can you guys found where I'm wrong. Smile | :)

I appreciate your help all the time...
Eranga Smile | :)

GeneralRe: Read buffer into a string. Pin
Cedric Moonen27-Jan-08 23:08
Cedric Moonen27-Jan-08 23:08 
GeneralRe: Read buffer into a string. Pin
CodingLover27-Jan-08 23:14
CodingLover27-Jan-08 23:14 
GeneralRe: Read buffer into a string. Pin
Cedric Moonen27-Jan-08 23:21
Cedric Moonen27-Jan-08 23:21 
GeneralRe: Read buffer into a string. Pin
Maxwell Chen27-Jan-08 23:09
Maxwell Chen27-Jan-08 23:09 
GeneralRe: Read buffer into a string. Pin
CodingLover27-Jan-08 23:18
CodingLover27-Jan-08 23:18 
GeneralRe: Read buffer into a string. Pin
Maxwell Chen27-Jan-08 23:21
Maxwell Chen27-Jan-08 23:21 
GeneralRe: Read buffer into a string. Pin
CodingLover27-Jan-08 23:35
CodingLover27-Jan-08 23:35 
QuestionRe: Read buffer into a string. Pin
CPallini27-Jan-08 23:17
mveCPallini27-Jan-08 23:17 
GeneralRe: Read buffer into a string. Pin
CodingLover27-Jan-08 23:22
CodingLover27-Jan-08 23:22 
GeneralRe: Read buffer into a string. Pin
CPallini27-Jan-08 23:38
mveCPallini27-Jan-08 23:38 
GeneralRe: Read buffer into a string. Pin
CodingLover27-Jan-08 23:52
CodingLover27-Jan-08 23:52 
GeneralRe: Read buffer into a string. Pin
CPallini28-Jan-08 0:17
mveCPallini28-Jan-08 0:17 
GeneralRe: Read buffer into a string. Pin
CodingLover28-Jan-08 0:20
CodingLover28-Jan-08 0:20 
QuestionRe: Read buffer into a string. Pin
CodingLover28-Jan-08 16:31
CodingLover28-Jan-08 16:31 
GeneralRe: Read buffer into a string. Pin
CPallini28-Jan-08 21:21
mveCPallini28-Jan-08 21:21 
GeneralRe: Read buffer into a string. Pin
CodingLover28-Jan-08 22:17
CodingLover28-Jan-08 22:17 
GeneralRe: Read buffer into a string. Pin
CPallini28-Jan-08 22:46
mveCPallini28-Jan-08 22:46 

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.