Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F6799110
Masterwork From Distant Lands
No One
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Authored By
cem
Jun 25 2020, 1:01 AM
2020-06-25 01:01:23 (UTC+0)
Size
672 B
Referenced Files
None
Subscribers
None
Masterwork From Distant Lands
View Options
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
Details
Attached
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)
Attached To
Mode
P401 Masterwork From Distant Lands
Attached
Detach File
Event Timeline
Log In to Comment