All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]: trivial fix incorrect indentation
@ 2019-05-24 22:16 Jokke Hämäläinen
  0 siblings, 0 replies; only message in thread
From: Jokke Hämäläinen @ 2019-05-24 22:16 UTC (permalink / raw)
  To: selinux


diff --git a/libsepol/src/services.c b/libsepol/src/services.c
index 303a138c..ac229279 100644
--- a/libsepol/src/services.c
+++ b/libsepol/src/services.c
@@ -325,8 +325,8 @@ static char *get_class_info(sepol_security_class_t tclass,
 	while (1) {
 		new_class_buf_len = class_buf_len + EXPR_BUF_SIZE;
 		new_class_buf = realloc(class_buf, new_class_buf_len);
-			if (!new_class_buf)
-				return NULL;
+		if (!new_class_buf)
+			return NULL;
 		class_buf_len = new_class_buf_len;
 		class_buf = new_class_buf;
 		buf_used = 0;

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-05-24 22:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-24 22:16 [PATCH]: trivial fix incorrect indentation Jokke Hämäläinen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.