1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 18:07:59 +00:00
putty-source/windows/utils/get_system_dir.c

22 lines
466 B
C
Raw Normal View History

/*
* Wrapper function around GetSystemDirectory that deals with
* allocating the output buffer, and also caches the result for future
* calls.
*/
#include "putty.h"
const char *get_system_dir(void)
{
static char *sysdir = NULL;
static size_t sysdirsize = 0;
if (!sysdir) {
size_t len;
while ((len = GetSystemDirectory(sysdir, sysdirsize)) >= sysdirsize)
sgrowarray(sysdir, sysdirsize, len);
}
return sysdir;
}