I noticed that sss_dp_get_account_int_done() would free sdp_req but then
the callback destructor would dereference sdp_req as well. When the
destructor is called, sdp_req is already gone.
It looks that the callback is not needed after it has called the request
it links to so I think we can just free it and let the destructor
remove it from the list.