Error related to mfc CString

Asked 2 years ago, Updated 2 years ago, 108 views

This error occurs in the += operation of the CString. (CString += char, CString += CString all occur) Sometimes this error does not occur, but it happens with a very high probability and needs help.

mfc cstring

2022-09-21 19:42

1 Answers

Well... 0xC0000005 when referring to the null object.

Occurs when you manipulate a dangling pointer pointing to an object that is not easily new or has already been turned off.

In other words, it's a problem that can't be solved by writing, and you have to debug it and find it.


2022-09-21 19:42

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.