discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=ddcc678d78f94ef9f76cac0b9617d56538bf5d0f
commit ddcc678d78f94ef9f76cac0b9617d56538bf5d0f Author: Mike Blumenkrantz <zm...@samsung.com> Date: Thu Mar 13 12:02:11 2014 -0400 ensure va_end is called when creating new pixmaps CID 1155292 --- src/bin/e_pixmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index 97952cd..8f81351 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -202,7 +202,7 @@ e_pixmap_new(E_Pixmap_Type type, ...) if (cp) { cp->refcount++; - return cp; + break; } } else @@ -221,7 +221,7 @@ e_pixmap_new(E_Pixmap_Type type, ...) if (cp) { cp->refcount++; - return cp; + break; } } else --