Commit 40179bed authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

shell32: Avoid hardcoding array lengths.

parent c55db752
...@@ -2115,7 +2115,7 @@ static HRESULT ShellLink_SetAdvertiseInfo(IShellLinkImpl *This, LPCWSTR str) ...@@ -2115,7 +2115,7 @@ static HRESULT ShellLink_SetAdvertiseInfo(IShellLinkImpl *This, LPCWSTR str)
static BOOL ShellLink_GetVolumeInfo(LPCWSTR path, volume_info *volume) static BOOL ShellLink_GetVolumeInfo(LPCWSTR path, volume_info *volume)
{ {
const int label_sz = sizeof volume->label/sizeof volume->label[0]; const int label_sz = sizeof volume->label/sizeof volume->label[0];
WCHAR drive[4] = { path[0], ':', '\\', 0 }; WCHAR drive[] = { path[0], ':', '\\', 0 };
BOOL r; BOOL r;
volume->type = GetDriveTypeW(drive); volume->type = GetDriveTypeW(drive);
......
...@@ -1609,7 +1609,7 @@ static HRESULT WINAPI UnixFolder_IPersistFolder3_Initialize(IPersistFolder3* ifa ...@@ -1609,7 +1609,7 @@ static HRESULT WINAPI UnixFolder_IPersistFolder3_Initialize(IPersistFolder3* ifa
if (current->mkid.cb) { if (current->mkid.cb) {
if (_ILIsDrive(current)) { if (_ILIsDrive(current)) {
WCHAR wszDrive[4] = { '?', ':', '\\', 0 }; WCHAR wszDrive[] = { '?', ':', '\\', 0 };
wszDrive[0] = (WCHAR)*_ILGetTextPointer(current); wszDrive[0] = (WCHAR)*_ILGetTextPointer(current);
if (!UNIXFS_get_unix_path(wszDrive, szBasePath)) if (!UNIXFS_get_unix_path(wszDrive, szBasePath))
return E_FAIL; return E_FAIL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment