Summary
Full Transcript
►Full C++ Series Playlist: https://www.youtube.com/playlist?list=PLvv0ScY6vfd8j-tlhYVPYgiIyXduu6m-L ►Find full courses on: https://courses.mshah.io/ ►Join as Member to Support the channel: https://www.youtube.com/channel/UCA64pZbN5Mz5NxC3SO4qpDg/join ►Lesson Description: In this lesson we look at four of the memory errors that can be caused by pointers: 1. nullptr (dereferencing a nullptr) 2. memory leak (forgetting to delete or delete[] memory) 3. Dangling pointers (accessing memory that is out of scope--usually returned from a function) 4.) Double free (deleting memory twice). In this lesson I also show you how to use the address sanitizer as part of the compiling process to help detect these problems. For Linux users, I also show valgrind (pronounced val-grinn, like the name 'Val' and a grine like a smile). Link to GDB Masterclass: https://www.youtube.com/watch?v=MTkDTjdDP3c Debugging a Segmentation Fault with GDB and valgrind: https://www.youtube.com/watch?v=8JEEYwdrexc ►YouTube Channel: https://www.youtube.com/c/MikeShah ►Please like and subscribe to help the channel!
