Index: chrome_frame/chrome_tab.cc |
=================================================================== |
--- chrome_frame/chrome_tab.cc (revision 111826) |
+++ chrome_frame/chrome_tab.cc (working copy) |
@@ -467,8 +467,9 @@ |
DWORD reg_type = REG_NONE; |
if (backup_key.ReadValue(NULL, NULL, &len, ®_type) != ERROR_SUCCESS) |
return false; |
+ DCHECK_EQ(0u, len % sizeof(wchar_t)); |
- if (reg_type != REG_SZ) |
+ if ((len == 0) || (reg_type != REG_SZ)) |
return false; |
size_t wchar_count = 1 + len / sizeof(wchar_t); |