Fix possible loss of data warnings in ProfileManager.cpp
This commit is contained in:
parent
d6cac9cb27
commit
9281f8ed5c
1 changed files with 2 additions and 2 deletions
|
|
@ -496,7 +496,7 @@ unsigned char * ProfileManager::GetProfileListDescription()
|
||||||
/*---------------------------------------------------------*\
|
/*---------------------------------------------------------*\
|
||||||
| Calculate data size |
|
| Calculate data size |
|
||||||
\*---------------------------------------------------------*/
|
\*---------------------------------------------------------*/
|
||||||
unsigned short num_profiles = profile_list.size();
|
unsigned short num_profiles = (unsigned short)profile_list.size();
|
||||||
|
|
||||||
data_size += sizeof(data_size);
|
data_size += sizeof(data_size);
|
||||||
data_size += sizeof(num_profiles);
|
data_size += sizeof(num_profiles);
|
||||||
|
|
@ -529,7 +529,7 @@ unsigned char * ProfileManager::GetProfileListDescription()
|
||||||
\*---------------------------------------------------------*/
|
\*---------------------------------------------------------*/
|
||||||
for(unsigned int i = 0; i < num_profiles; i++)
|
for(unsigned int i = 0; i < num_profiles; i++)
|
||||||
{
|
{
|
||||||
unsigned short name_len = strlen(profile_list[i].c_str()) + 1;
|
unsigned short name_len = (unsigned short)strlen(profile_list[i].c_str()) + 1;
|
||||||
|
|
||||||
memcpy(&data_buf[data_ptr], &name_len, sizeof(name_len));
|
memcpy(&data_buf[data_ptr], &name_len, sizeof(name_len));
|
||||||
data_ptr += sizeof(name_len);
|
data_ptr += sizeof(name_len);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue