testoverflow.cpp

来自「网络安全原理方面的小程序:基本tcp/ip通信、原始套接字程序、DES/RSA/」· C++ 代码 · 共 53 行

CPP
53
字号


#include "stdafx.h"
#include "TestOverflow.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


CWinApp theApp;

using namespace std;
void TestOverflow(char *buf)
{
	CFile file; 
	CFileException er; 
	if(!file.Open(_T("TestOverflow.txt"),CFile::modeRead,&er)) 
	{ 
		er.ReportError(); 
		return; 
	} 
	
	int x = file.GetLength(); 
	file.Read(buf,x);

}

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
	int nRetCode = 0;

	// initialize MFC and print and error on failure
	if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
	{
		// TODO: change error code to suit your needs
		cerr << _T("Fatal Error: MFC initialization failed") << endl;
		nRetCode = 1;
	}
	else
	{

		char buf[10]; 
		TestOverflow(buf); 
	}

	return nRetCode;
}


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?