mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-03-29 11:21:08 -04:00
Fix possible loss of data warnings in ProfileManager.cpp
This commit is contained in:
@@ -496,7 +496,7 @@ unsigned char * ProfileManager::GetProfileListDescription()
|
||||
/*---------------------------------------------------------*\
|
||||
| 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(num_profiles);
|
||||
@@ -529,7 +529,7 @@ unsigned char * ProfileManager::GetProfileListDescription()
|
||||
\*---------------------------------------------------------*/
|
||||
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));
|
||||
data_ptr += sizeof(name_len);
|
||||
|
||||
Reference in New Issue
Block a user