From dead11c23497c8b749ffa0336eee7e551893003b Mon Sep 17 00:00:00 2001 From: Rafael Antognolli Date: Tue, 19 May 2009 13:57:48 +0000 Subject: [PATCH] Oops! Fixed little mistake on ethumb_file_get(). SVN revision: 40743 --- legacy/ethumb/src/lib/Ethumb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ethumb/src/lib/Ethumb.c b/legacy/ethumb/src/lib/Ethumb.c index 475309e451..4b901cb06d 100644 --- a/legacy/ethumb/src/lib/Ethumb.c +++ b/legacy/ethumb/src/lib/Ethumb.c @@ -743,8 +743,8 @@ ethumb_thumb_path_get(Ethumb *e, const char **path, const char **key) if (!e->thumb_path) _ethumb_file_generate_path(e); - if (*path) *path = e->thumb_path; - if (*key) *key = e->thumb_key; + if (path) *path = e->thumb_path; + if (key) *key = e->thumb_key; } void