We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sid
1 parent 4f6e80e commit 0e9a5acCopy full SHA for 0e9a5ac
1 file changed
src/common/impl/FFPlatform.c
@@ -16,6 +16,10 @@ void ffPlatformInit(FFPlatform* platform)
16
ffStrbufInit(&platform->hostName);
17
ffStrbufInit(&platform->userShell);
18
19
+ #ifdef _WIN32
20
+ ffStrbufInit(&platform->sid);
21
+ #endif
22
+
23
FFPlatformSysinfo* info = &platform->sysinfo;
24
25
ffStrbufInit(&info->name);
@@ -51,6 +55,10 @@ void ffPlatformDestroy(FFPlatform* platform)
51
55
ffStrbufDestroy(&platform->userShell);
52
56
ffStrbufDestroy(&platform->fullUserName);
53
57
58
59
+ ffStrbufDestroy(&platform->sid);
60
61
54
62
63
ffStrbufDestroy(&info->architecture);
64
ffStrbufDestroy(&info->name);
0 commit comments