본문 바로가기
프로그래밍/Windows API

[MFC] buffer too small 에러.... (CString)

by 베리베리 2009. 8. 22.

CString str;
str+="count=";
str.Format(_T("%s%d"),str,user_count);

이렇게 하고 디버그모드로 실행하니
buffer too small 에러가 나왔다.

그래서 Format 대신
str.AppendFormat(_T("%d"),user_count);

이것을 사용했더니 문제없이 실행된다.

도대체 무엇이 문제인걸까?

댓글