talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 6fcc0e06c5bf6c0a2a49784d54a4e1a5e6a0a5dd
parent 985a56cfaf5bc19be9a31f9fda2e647a966bea91
Author: Colin Leroy <colin@colino.net>
Date:   Thu,  8 Oct 2015 18:39:33 +0200

Fix theoretical off-by-one (which should never happen)

Diffstat:
Msrc/plugins/notification/notification_pixbuf.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/plugins/notification/notification_pixbuf.c b/src/plugins/notification/notification_pixbuf.c @@ -16,6 +16,7 @@ */ #include "notification_pixbuf.h" +#include "common/utils.h" /* The following files were created from the respective .png or * xpm files with the command @@ -81,6 +82,7 @@ GdkPixbuf* notification_pixbuf_get(NotificationPixbuf wanted) break; } } + cm_return_val_if_fail(wanted < NOTIFICATION_PIXBUF_LAST, NULL); return notification_pixbuf[wanted]; }