Click here to Skip to main content
15,900,724 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionB+ tree update/delete/insert issue Pin
George_George10-Aug-08 23:36
George_George10-Aug-08 23:36 
QuestionRe: B+ tree update/delete/insert issue Pin
David Crow11-Aug-08 3:20
David Crow11-Aug-08 3:20 
AnswerRe: B+ tree update/delete/insert issue Pin
George_George11-Aug-08 3:31
George_George11-Aug-08 3:31 
GeneralRe: B+ tree update/delete/insert issue Pin
David Crow11-Aug-08 3:44
David Crow11-Aug-08 3:44 
GeneralRe: B+ tree update/delete/insert issue Pin
George_George11-Aug-08 3:52
George_George11-Aug-08 3:52 
GeneralRe: B+ tree update/delete/insert issue Pin
Matthew Faithfull11-Aug-08 4:47
Matthew Faithfull11-Aug-08 4:47 
GeneralRe: B+ tree update/delete/insert issue Pin
George_George11-Aug-08 19:50
George_George11-Aug-08 19:50 
QuestionWhat is wrong with my function? it keeps crashing when it gets to return. Pin
monsieur_jj10-Aug-08 23:36
monsieur_jj10-Aug-08 23:36 
Hi all

What is wrong with my function? it keeps crashing when it gets to return.

bool CUpdateServiceModule::DoCheckForProductUpdates(ns1__Update oUpdateCode, RMproduct* prd)
{

	iRet = m_pWebServiceSoap->__ns2__DoCheckForProductUpdates(pDoCheckForProductUpdates,pDoCheckForProductUpdatesResponse);
	
	switch(iRet)
	{
	case SOAP_OK :
		{
			if(pDoCheckForProductUpdatesResponse->DoCheckForProductUpdatesResult)
			{
			pDoGetLatestProduct->productName = pDoCheckForProductUpdates->productName;
			iRet = m_pWebServiceSoap->__ns2__DoGetLatestProduct(pDoGetLatestProduct,pDoGetLatestProductResponse);

			switch(iRet)
			{
			case SOAP_OK :
				{
					RMUpdates* update = new RMUpdates;
					break;
					return true;
				}
			default:
				{
				Log(GetSoapError());	
				}
			}
			}
		}
		
	default:
		{
		Log(GetSoapError());
		}
	}
	return false;
}


I am getting this error:

Unhandled exception at 0x004970b6 in UpdateService.exe: 0xC0000005: 
Access violation reading location 0xcdcdcdd5.


Please Advise

thanks,
Jayjay
AnswerRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
_AnsHUMAN_ 10-Aug-08 23:46
_AnsHUMAN_ 10-Aug-08 23:46 
AnswerRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
Jijo.Raj10-Aug-08 23:55
Jijo.Raj10-Aug-08 23:55 
AnswerRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
SandipG 11-Aug-08 1:06
SandipG 11-Aug-08 1:06 
GeneralRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
monsieur_jj11-Aug-08 15:03
monsieur_jj11-Aug-08 15:03 
GeneralRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
monsieur_jj11-Aug-08 15:18
monsieur_jj11-Aug-08 15:18 
GeneralRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
monsieur_jj11-Aug-08 15:33
monsieur_jj11-Aug-08 15:33 
QuestionRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
David Crow11-Aug-08 3:48
David Crow11-Aug-08 3:48 
AnswerRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
Roger Stoltz11-Aug-08 4:04
Roger Stoltz11-Aug-08 4:04 
GeneralRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
David Crow11-Aug-08 4:18
David Crow11-Aug-08 4:18 
GeneralRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
Roger Stoltz11-Aug-08 4:30
Roger Stoltz11-Aug-08 4:30 
GeneralRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
ThatsAlok11-Aug-08 8:41
ThatsAlok11-Aug-08 8:41 
JokeRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
Roger Stoltz11-Aug-08 10:14
Roger Stoltz11-Aug-08 10:14 
GeneralRe: What is wrong with my function? it keeps crashing when it gets to return. Pin
ThatsAlok11-Aug-08 16:57
ThatsAlok11-Aug-08 16:57 
QuestionWriting debugging-lines after Blue Screen Pin
Lucas_Coder10-Aug-08 22:42
Lucas_Coder10-Aug-08 22:42 
AnswerRe: Writing debugging-lines after Blue Screen Pin
Ahmed Charfeddine11-Aug-08 0:08
Ahmed Charfeddine11-Aug-08 0:08 
Questiondriver licked pages in process [modified] Pin
anilaabc10-Aug-08 21:22
anilaabc10-Aug-08 21:22 
AnswerRe: driver licked pages in process Pin
Randor 11-Aug-08 16:22
professional Randor 11-Aug-08 16:22 

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.