SFML community forums

Help => General => Topic started by: Jamie_Edwards on April 11, 2017, 12:31:00 pm

Title: Double free or corruption (!prev) error?
Post by: Jamie_Edwards on April 11, 2017, 12:31:00 pm
Hi guys

So I've started to use SFML2 after a couple of years and have hit a pretty nasty error (or so I believe as I've never come across it). I get a double free or corruption (!prev) error when terminating my window.

Now, after looking at a few different topics, they all state the cause is a call to a double freeing of pointers. Granted, initially I did indeed have a double call to my destroy() function so I removed it. However, I'm still getting the error.

The full dump is:
(click to show/hide)

I'm using std::unique_ptr's for my resources and sprites, might that be causing this?

I'm also as you can guess, using Linux. Namely Ubuntu 16.10.
Title: Re: Double free or corruption (!prev) error?
Post by: eXpl0it3r on April 11, 2017, 12:46:12 pm
So you call delete somewhere in your code? If so, put a break point on it and see if it gets called multiple times.
Or even better, get rid of manual memory management. ;)
Title: Re: Double free or corruption (!prev) error?
Post by: Jamie_Edwards on April 11, 2017, 01:26:20 pm
I'm trying to minimise manual memory management by using smart pointers as much as possible though?
Title: Re: Double free or corruption (!prev) error?
Post by: eXpl0it3r on April 11, 2017, 01:40:03 pm
Don't just minimize it, remove it entirely. You're already using smart pointers, there's no point in replacing the last occurrences of MMM as well. ;)