]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/fileio.c (Ffile_selinux_context): Context functions may return null.
authorKarel Klíc <kklic@redhat.com>
Sat, 1 May 2010 02:58:41 +0000 (19:58 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 1 May 2010 02:58:41 +0000 (19:58 -0700)
src/ChangeLog
src/fileio.c

index e543fe7655fdc2314c0a6d01a2996865291a5ffc..3f6a45a411891efe5426ded837d608498abd8691 100644 (file)
@@ -1,3 +1,7 @@
+2010-05-01  Karel Klíč  <kklic@redhat.com>
+
+       * fileio.c (Ffile_selinux_context): Context functions may return null.
+
 2010-04-30  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * s/gnu.h (POSIX_SIGNALS):
index 4bfbae918448735675fdfc056b478072dce23e72..13825a5421201b3592307955b2eeee77a481521a 100644 (file)
@@ -2918,10 +2918,14 @@ if file does not exist, is not accessible, or SELinux is disabled */)
       if (conlength > 0)
        {
          context = context_new (con);
-         values[0] = build_string (context_user_get (context));
-         values[1] = build_string (context_role_get (context));
-         values[2] = build_string (context_type_get (context));
-         values[3] = build_string (context_range_get (context));
+         if (context_user_get (context))
+           values[0] = build_string (context_user_get (context));
+         if (context_role_get (context))
+           values[1] = build_string (context_role_get (context));
+         if (context_type_get (context))
+           values[2] = build_string (context_type_get (context));
+         if (context_range_get (context))
+           values[3] = build_string (context_range_get (context));
          context_free (context);
        }
       if (con)