]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/xsmfns.c (x_session_initialize): Avoid libSM crash
authorGlenn Morris <rgm@gnu.org>
Sat, 13 Jun 2015 23:35:54 +0000 (16:35 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 13 Jun 2015 23:35:54 +0000 (16:35 -0700)
when starup directory is missing.  (Bug#18851)
(errno.h): Include it.

src/xsmfns.c

index 48aaa9bef8a1870c968df49e7b18f76bea3d9f91..3b06f7133c756a8470f1480855caf7e30317bc16 100644 (file)
@@ -28,6 +28,7 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <unistd.h>
 #include <sys/param.h>
+#include <errno.h>
 #include <stdio.h>
 
 #include "lisp.h"
@@ -402,6 +403,14 @@ x_session_initialize (struct x_display_info *dpyinfo)
   SmcCallbacks callbacks;
   ptrdiff_t name_len = 0;
 
+  /* libSM seems to crash if pwd is missing - see bug#18851.  */
+  if (! get_current_dir_name ())
+    {
+      fprintf (stderr, "Disabling session management due to pwd error: %s\n",
+               emacs_strerror (errno));
+      return;
+    }
+
   ice_fd = -1;
   doing_interact = false;