GCC Debugging/g++/Other

< GCC Debugging < g++

Runtime Errors

*** glibc detected *** ./PROGRAM_NAME: free(): invalid pointer: ADDRESS ***

// function declaration below has no return type in its' definition
foo checkfoo(); 
// instead it should be
void checkfoo();
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.