On Fri, Feb 26, 2021 at 2:35 PM Ryan Long <thisisryanl...@gmail.com> wrote: > > CID 1459004: Unchecked return value in endgrent(). > > Closes #4261 > --- > cpukit/libcsupport/src/getgrent.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/cpukit/libcsupport/src/getgrent.c > b/cpukit/libcsupport/src/getgrent.c > index b358cb9..534e04c 100644 > --- a/cpukit/libcsupport/src/getgrent.c > +++ b/cpukit/libcsupport/src/getgrent.c > @@ -95,6 +95,7 @@ void setgrent(void) > void endgrent(void) > { > grp_context *ctx = grp_get_context(); > + int sc; > > if (ctx == NULL) > return; > @@ -104,5 +105,6 @@ void endgrent(void) > } > > free(ctx); > - pthread_setspecific(grp_key, NULL); > + sc = pthread_setspecific(grp_key, NULL); > + _Assert_Unused_variable_equals(sc,0); add whitespace after comma
> } > -- > 1.8.3.1 > > _______________________________________________ > devel mailing list > devel@rtems.org > http://lists.rtems.org/mailman/listinfo/devel _______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel