Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Oct 2011 13:23:55 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 200055 for review
Message-ID:  <201110111323.p9BDNtpx085162@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@200055?ac=10

Change 200055 by jhb@jhb_jhbbsd on 2011/10/11 13:23:04

	Add missing braces.

Affected files ...

.. //depot/projects/smpng/sys/compat/linux/linux_uid16.c#29 edit

Differences ...

==== //depot/projects/smpng/sys/compat/linux/linux_uid16.c#29 (text+ko) ====

@@ -113,9 +113,10 @@
 		return (EINVAL);
 	linux_gidset = malloc(ngrp * sizeof(*linux_gidset), M_TEMP, M_WAITOK);
 	error = copyin(args->gidset, linux_gidset, ngrp * sizeof(l_gid16_t));
-	if (error)
+	if (error) {
 		free(linux_gidset, M_TEMP);
 		return (error);
+	}
 	newcred = crget();
 	p = td->td_proc;
 	PROC_LOCK(p);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110111323.p9BDNtpx085162>