Page MenuHomeFreeBSD

Masterwork From Distant Lands

Authored By
cem
Jun 25 2020, 1:01 AM
Size
672 B
Referenced Files
None
Subscribers
None

Masterwork From Distant Lands

files/patch-components_sync__device__info_local__device__info__util__linux.cc
--- components/sync_device_info/local_device_info_util_linux.cc.orig 2020-02-24 18:39:14 UTC
+++ components/sync_device_info/local_device_info_util_linux.cc
@@ -37,8 +37,9 @@ std::string GetPersonalizableDeviceNameInternal() {
#if defined(OS_CHROMEOS)
return GetChromeOSDeviceNameFromType();
#else
- char hostname[HOST_NAME_MAX];
- if (gethostname(hostname, HOST_NAME_MAX) == 0) // Success.
+ int len = sysconf(_SC_HOST_NAME_MAX);
+ char hostname[len];
+ if (gethostname(hostname, _SC_HOST_NAME_MAX) == 0) // Success.
return hostname;
return base::GetLinuxDistro();
#endif

File Metadata

Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2648438
Default Alt Text
Masterwork From Distant Lands (672 B)

Event Timeline