On Thu, 9 Mar 2006 17:51:27 +1100, NeilBrown wrote:
> struct auth_domain *unix_domain_find(char *name)
> {
> - [code deletions removed]
> + struct auth_domain *rv;
> + struct unix_domain *new = NULL;
>
> - [code deletions removed]
> + rv = auth_domain_lookup(name, NULL);
> + while(1) {
> + if (rv != &new->h) {
> + if (new) auth_domain_put(&new->h);
> + return rv;
> + }
> + new = kmalloc(sizeof(*new), GFP_KERNEL);
> + if (new == NULL)
> + return NULL;
My C skills are a bit rusty, but is seems the value of new is offsetted
while still NULL. I could not find any further updates in the patch
series.
-Paul
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]