Click here to Skip to main content
15,886,088 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Load data from database to BCG grid Pin
MrKBA13-May-09 22:47
MrKBA13-May-09 22:47 
QuestionAppend BStr Pin
Mogaambo12-May-09 21:23
Mogaambo12-May-09 21:23 
AnswerRe: Append BStr Pin
Madhu Nair12-May-09 21:27
Madhu Nair12-May-09 21:27 
QuestionRe: Append BStr Pin
CPallini12-May-09 21:31
mveCPallini12-May-09 21:31 
AnswerRe: Append BStr Pin
Mogaambo12-May-09 22:26
Mogaambo12-May-09 22:26 
GeneralRe: Append BStr Pin
CPallini12-May-09 22:33
mveCPallini12-May-09 22:33 
GeneralRe: Append BStr Pin
Mogaambo12-May-09 22:36
Mogaambo12-May-09 22:36 
GeneralRe: Append BStr Pin
CPallini12-May-09 23:14
mveCPallini12-May-09 23:14 
It looks like the problem is in your bad mixing of char and wchar calls:
with the following line
BSTR st3 = ::SysAllocStringByteLen(NULL,destLen+srcLen);

you're allocating (destLen + srcLen + 1) bytes.

while in the following calls
wcscpy(st3, dest);
wcscat(st3, src); 

you need, (destLen + srcLen + 2) bytes.

Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

GeneralRe: Append BStr Pin
Mogaambo12-May-09 23:54
Mogaambo12-May-09 23:54 
GeneralRe: Append BStr Pin
CPallini13-May-09 0:06
mveCPallini13-May-09 0:06 
GeneralRe: Append BStr Pin
Mogaambo13-May-09 0:19
Mogaambo13-May-09 0:19 
GeneralRe: Append BStr [modified] Pin
CPallini13-May-09 0:39
mveCPallini13-May-09 0:39 
GeneralRe: Append BStr Pin
Mogaambo13-May-09 0:53
Mogaambo13-May-09 0:53 
GeneralRe: Append BStr Pin
CPallini13-May-09 1:33
mveCPallini13-May-09 1:33 
GeneralRe: Append BStr Pin
CPallini13-May-09 2:08
mveCPallini13-May-09 2:08 
GeneralRe: Append BStr Pin
Mogaambo13-May-09 2:37
Mogaambo13-May-09 2:37 
QuestionRe: Append BStr Pin
CPallini13-May-09 2:43
mveCPallini13-May-09 2:43 
AnswerRe: Append BStr Pin
«_Superman_»12-May-09 21:52
professional«_Superman_»12-May-09 21:52 
AnswerRe: Append BStr Pin
KarstenK12-May-09 22:25
mveKarstenK12-May-09 22:25 
GeneralRe: Append BStr Pin
Mogaambo12-May-09 22:28
Mogaambo12-May-09 22:28 
GeneralRe: Append BStr Pin
Rajesh R Subramanian12-May-09 22:37
professionalRajesh R Subramanian12-May-09 22:37 
GeneralRe: Append BStr Pin
KarstenK12-May-09 22:41
mveKarstenK12-May-09 22:41 
GeneralRe: Append BStr Pin
Mogaambo12-May-09 22:51
Mogaambo12-May-09 22:51 
AnswerRe: Append BStr [modified] Pin
Madhu Nair12-May-09 22:55
Madhu Nair12-May-09 22:55 
GeneralRe: Append BStr Pin
Mogaambo12-May-09 23:51
Mogaambo12-May-09 23:51 

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.