Mercurial > geeqie
annotate src/trash.h @ 1661:13ff1db545f6
Fix two memory failures
1. if the description field for a exif information is empty the program
dumps core when trying to change this. The reason is a strcmp with a
NULL value.
The fix add the small functionality to set the field to default when
it is set empty.
2. There was a g_strdup miss in exif.c which could end in memory
corruption.
author | mow |
---|---|
date | Sun, 21 Jun 2009 22:52:08 +0000 |
parents | a6f9ba6fd751 |
children | 956aab097ea7 |
rev | line source |
---|---|
597 | 1 /* |
2 * Geeqie | |
1284 | 3 * Copyright (C) 2008 - 2009 The Geeqie Team |
597 | 4 * |
5 * This software is released under the GNU General Public License (GNU GPL). | |
6 * Please read the included file COPYING for more information. | |
7 * This software comes with no warranty of any kind, use at your own risk! | |
8 */ | |
9 | |
10 | |
11 #ifndef TRASH_H | |
12 #define TRASH_H | |
13 | |
14 #include "ui_utildlg.h" | |
15 | |
16 void file_util_trash_clear(void); | |
1446 | 17 gboolean file_util_safe_unlink(const gchar *path); |
600 | 18 gchar *file_util_safe_delete_status(void); |
597 | 19 |
600 | 20 #endif /* TRASH_H */ |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
600
diff
changeset
|
21 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |