X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fgroup.c;h=3978f2fb948818805c1c9045637ad8e1f2f0f727;hb=35c4cb8cfb59bf6e1eb770114850e1184cfafc9b;hp=58d5c9295d377c0f7d3eaff7877a363f91c103fa;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/math/group.c b/src/math/group.c index 58d5c9295d..3978f2fb94 100644 --- a/src/math/group.c +++ b/src/math/group.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by John Darrington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -19,13 +18,14 @@ #include #include -#include "alloc.h" -#include "hash.h" +#include +#include +#include #include "group.h" #include "group-proc.h" -#include "str.h" -#include "variable.h" -#include "misc.h" +#include +#include +#include /* Return -1 if the id of a is less than b; +1 if greater than and @@ -62,7 +62,11 @@ struct group_proc * group_proc_get (struct variable *v) { /* This is not ideal, obviously. */ - if (v->aux == NULL) - var_attach_aux (v, xmalloc (sizeof (struct group_proc)), var_dtor_free); - return v->aux; + struct group_proc *group = var_get_aux (v); + if (group == NULL) + { + group = xmalloc (sizeof (struct group_proc)); + var_attach_aux (v, group, var_dtor_free); + } + return group; }