replace g_strdup_printf call with static buffer
This commit is contained in:
parent
1a3f3d2b4a
commit
c6869dd493
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
#include <limits>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
#include <gdk/gdkx.h>
|
#include <gdk/gdkx.h>
|
||||||
|
@ -801,11 +802,11 @@ int main(int argc, char **argv) {
|
||||||
g_printerr("no window");
|
g_printerr("no window");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
char *xid_s = g_strdup_printf("%lu", GDK_WINDOW_XID(gdk_window));
|
char xid_s[std::numeric_limits<long unsigned>::digits10 + 1];
|
||||||
|
snprintf(xid_s, sizeof xid_s, "%lu", GDK_WINDOW_XID(gdk_window));
|
||||||
char **env = g_get_environ();
|
char **env = g_get_environ();
|
||||||
env = g_environ_setenv(env, "WINDOWID", xid_s, TRUE);
|
env = g_environ_setenv(env, "WINDOWID", xid_s, TRUE);
|
||||||
env = g_environ_setenv(env, "TERM", term, TRUE);
|
env = g_environ_setenv(env, "TERM", term, TRUE);
|
||||||
g_free(xid_s);
|
|
||||||
|
|
||||||
GPid ppid;
|
GPid ppid;
|
||||||
if (g_spawn_async(NULL, command_argv, env,
|
if (g_spawn_async(NULL, command_argv, env,
|
||||||
|
|
Loading…
Reference in New Issue