symsynd icon indicating copy to clipboard operation
symsynd copied to clipboard

Results 2 symsynd issues
Sort by recently updated
recently updated
newest added

https://github.com/getsentry/symsynd/blob/13825f10bfb9291fe7bcd13937ddf398e7104234/libdebug/src/cabi.rs#L19-L24 https://github.com/getsentry/symsynd/blob/13825f10bfb9291fe7bcd13937ddf398e7104234/libdebug/src/cabi.rs#L72-L79 The destructor won't release CError.message (on the heap since `(*err_out).message = Box::into_raw(s.into_boxed_str()) as *mut u8; `), causing memory leak. To free the field, probable fix is like: https://github.com/getsentry/symsynd/blob/13825f10bfb9291fe7bcd13937ddf398e7104234/libdebug/src/cabi.rs#L128-L133...

``` File "/var/www/sentry/local/lib/python2.7/site-packages/sentry/api/base.py", line 87, in handle_exception return super(Endpoint, self).handle_exception(exc) File "/var/www/sentry/local/lib/python2.7/site-packages/sentry/api/base.py", line 181, in dispatch response = handler(request, *args, **kwargs) File "/var/www/sentry/local/lib/python2.7/site-packages/sentry/api/endpoints/dsym_files.py", line 92, in post return upload_from_request(request, project=project)...