Mercurial > geeqie.yaz
changeset 1668:9e168ba1b0b9
fixed an use of uninitialized value
| author | nadvornik |
|---|---|
| date | Tue, 30 Jun 2009 20:15:33 +0000 |
| parents | ece97f3f2305 |
| children | 4696cc54d870 |
| files | src/metadata.c |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/metadata.c Tue Jun 30 20:12:28 2009 +0000 +++ b/src/metadata.c Tue Jun 30 20:15:33 2009 +0000 @@ -336,7 +336,7 @@ have_keywords = g_hash_table_lookup_extended(fd->modified_xmp, KEYWORD_KEY, NULL, &keywords); have_comment = g_hash_table_lookup_extended(fd->modified_xmp, COMMENT_KEY, NULL, &comment_l); - comment = comment_l ? ((GList *)comment_l)->data : NULL; + comment = (have_comment && comment_l) ? ((GList *)comment_l)->data : NULL; if (!have_keywords || !have_comment) metadata_file_read(metadata_pathl, &orig_keywords, &orig_comment);
