Patch to context_new to set errno to EINVAL on bad values

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




diff --git a/libselinux/src/context.c b/libselinux/src/context.c
index 8164104..b673733 100644
--- a/libselinux/src/context.c
+++ b/libselinux/src/context.c
@@ -22,6 +22,7 @@ typedef struct {
 context_t context_new(const char *str)
 {
 	int i, count;
+	errno = 0;
 	context_private_t *n =
 	    (context_private_t *) malloc(sizeof(context_private_t));
 	context_t result = (context_t) malloc(sizeof(context_s_t));
@@ -76,6 +77,7 @@ context_t context_new(const char *str)
 	}
 	return result;
       err:
+	if (errno == 0) errno = EINVAL;
 	context_free(result);
 	return 0;
 }

[Index of Archives]     [Selinux Refpolicy]     [Linux SGX]     [Fedora Users]     [Fedora Desktop]     [Yosemite Photos]     [Yosemite Camping]     [Yosemite Campsites]     [KDE Users]     [Gnome Users]

  Powered by Linux