aboutsummaryrefslogtreecommitdiffstats
path: root/src/faudit/dbus.c
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-11-27 10:36:49 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2016-11-27 10:36:49 -0500
commita4fd0e433ace4bbdafe808a56550d55431b882d2 (patch)
treeaaa1d2c0b3a45bd8c53411e628de7215f5ad34cb /src/faudit/dbus.c
parentMerge pull request #941 from Fred-Barclay/text_editors (diff)
downloadfirejail-a4fd0e433ace4bbdafe808a56550d55431b882d2.tar.gz
firejail-a4fd0e433ace4bbdafe808a56550d55431b882d2.tar.zst
firejail-a4fd0e433ace4bbdafe808a56550d55431b882d2.zip
fixes
Diffstat (limited to 'src/faudit/dbus.c')
-rw-r--r--src/faudit/dbus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/faudit/dbus.c b/src/faudit/dbus.c
index 4debf2ff6..d92660536 100644
--- a/src/faudit/dbus.c
+++ b/src/faudit/dbus.c
@@ -35,7 +35,7 @@ int check_unix(const char *sockfile) {
35 struct sockaddr_un remote; 35 struct sockaddr_un remote;
36 memset(&remote, 0, sizeof(struct sockaddr_un)); 36 memset(&remote, 0, sizeof(struct sockaddr_un));
37 remote.sun_family = AF_UNIX; 37 remote.sun_family = AF_UNIX;
38 strcpy(remote.sun_path, sockfile); 38 strncpy(remote.sun_path, sockfile, sizeof(remote.sun_path));
39 int len = strlen(remote.sun_path) + sizeof(remote.sun_family); 39 int len = strlen(remote.sun_path) + sizeof(remote.sun_family);
40 if (*sockfile == '@') 40 if (*sockfile == '@')
41 remote.sun_path[0] = '\0'; 41 remote.sun_path[0] = '\0';