chiark / gitweb /
nspawn,pty: port over to new ptsname_malloc() helper
[elogind.git] / src / shared / pty.c
index 52a426c0e15fd8314571570bcb94f8291cc3ae85..6863be654eaa676a4f82cc12af45b6f2ebb2cecd 100644 (file)
@@ -194,13 +194,13 @@ int pty_get_fd(Pty *pty) {
 }
 
 int pty_make_child(Pty *pty) {
-        char slave_name[1024];
+        _cleanup_free_ char *slave_name = NULL;
         int r, fd;
 
         assert_return(pty, -EINVAL);
         assert_return(pty_is_unknown(pty), -EALREADY);
 
-        r = ptsname_r(pty->fd, slave_name, sizeof(slave_name));
+        r = ptsname_malloc(pty->fd, &slave_name);
         if (r < 0)
                 return -errno;