I am new to code guru and have been having a major problem with a code assignment I have due in a couple days. I am using several recursive functions to perform operations on trees when I run my program with valgrind I get the following error. One of the functions in which the error occurs is a simple PrintTree function. Any help fixing this function would be greatly appreciated. Thanks! The code that the error occurs in is displayed below the error:
Valgrind command: valgrind run --leak-check=yes --read-var-info=yes --show-unreachable=yes --track-origins=yes
Error:
==2694== Stack overflow in thread 1: can't grow stack to 0xBE39AFFC
==2694==
==2694== Process terminating with default action of signal 11 (SIGSEGV)
==2694== Access not within mapped region at address 0xBE39AFFC
==2694== at 0x804BCBF: std::allocator<Node*>::allocator(std::allocator<Node*> const&) (in /tmp/.users/acd3m4/acd3m4/cs348/assignment5/run)
==2694== Stack overflow in thread 1: can't grow stack to 0xBE39AFF8
==2694==
==2694== Process terminating with default action of signal 11 (SIGSEGV)
==2694== Access not within mapped region at address 0xBE39AFF8
==2694== at 0x40011D0: _vgnU_freeres (vg_preloaded.c:56)
==2694==
==2694== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 15 from 1)
==2694== malloc/free: in use at exit: 25,800 bytes in 20 blocks.
==2694== malloc/free: 31 allocs, 11 frees, 35,015 bytes allocated.
==2694== For counts of detected errors, rerun with: -v
==2694== searching for pointers to 20 not-freed blocks.
==2694== checked 3,594,140 bytes.
==2694==
==2694== LEAK SUMMARY:
==2694== definitely lost: 0 bytes in 0 blocks.
==2694== possibly lost: 0 bytes in 0 blocks.
==2694== still reachable: 25,800 bytes in 20 blocks.
==2694== suppressed: 0 bytes in 0 blocks.
==2694== Reachable blocks (those to which a pointer was found) are not shown.
==2694== To see them, rerun with: --show-reachable=yes
Segmentation fault
Bookmarks