Re: [Mesa-dev] [PATCH] util: fix list_is_singular()

2017-01-11 Thread Jason Ekstrand
Reviewed-by: Jason Ekstrand Please CC stable. On Tue, Jan 10, 2017 at 8:13 PM, Timothy Arceri < timothy.arc...@collabora.com> wrote: > Currently its dependant on the user calling and checking the result > of list_empty() before using the result of list_is_singular(). >

[Mesa-dev] [PATCH] util: fix list_is_singular()

2017-01-10 Thread Timothy Arceri
Currently its dependant on the user calling and checking the result of list_empty() before using the result of list_is_singular(). --- src/util/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/list.h b/src/util/list.h index e8a99ac..07eb9f3 100644 ---