mirror of https://github.com/BOINC/boinc.git
client fix crash bug introduced by changing PROXY_INFO strings from char[] to std::string
svn path=/trunk/boinc/; revision=18821
This commit is contained in:
parent
290d92aeb0
commit
f088df311f
|
@ -6792,10 +6792,13 @@ Rom 7 Aug 2009
|
|||
proxy_info.cpp, .h
|
||||
|
||||
Charlie 7 Aug 2009
|
||||
- client fix crash bug introduced by changing PROXY_INFO strings
|
||||
from char[] to std::string.
|
||||
- client: fix compiler warnings "call will abort at run time."
|
||||
- Sandbox: add a couple of casts for compiler warnings.
|
||||
|
||||
client/
|
||||
app_start.cpp
|
||||
check_security.cpp
|
||||
client_state.cpp
|
||||
http_curl.cpp
|
||||
|
|
|
@ -251,8 +251,6 @@ int ACTIVE_TASK::write_app_init_file() {
|
|||
char init_data_path[256], project_dir[256], project_path[256];
|
||||
int retval;
|
||||
|
||||
memset(&aid, 0, sizeof(aid));
|
||||
|
||||
aid.major_version = BOINC_MAJOR_VERSION;
|
||||
aid.minor_version = BOINC_MINOR_VERSION;
|
||||
aid.release = BOINC_RELEASE;
|
||||
|
|
Loading…
Reference in New Issue