If symbol file is unload before terminating program, segfault can occur
when access to static variable. (ex. mutex_da_info_list)
Change-Id: I9e6c61f2d45264682755d5717d85943e5b5c44a3
Name: download-provider
Summary: Download the contents in background
-Version: 2.1.120
+Version: 2.1.121
Release: 0
Group: Development/Libraries
License: Apache-2.0
if (download_agent_deinit != NULL)
(*download_agent_deinit)();
- dlclose(g_da_handle);
- g_da_handle = NULL;
+ // Do not unload a symbol file here.
+ //dlclose(g_da_handle);
+ //g_da_handle = NULL;
}
}