diff options
| author | Simon Tatham <anakin@pobox.com> | 2007-01-03 09:51:42 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2007-01-03 09:51:42 +0000 |
| commit | 14ed4e9b1ec29fce49e68d08955fdcec9909e6cf (patch) | |
| tree | a6773d1d377bed9b069d59ca3f6a1037d46c9af7 | |
| parent | 7848918bace2aed7f850f95c20afa5d1345ad1f7 (diff) | |
| download | puzzles-14ed4e9b1ec29fce49e68d08955fdcec9909e6cf.zip puzzles-14ed4e9b1ec29fce49e68d08955fdcec9909e6cf.tar.gz puzzles-14ed4e9b1ec29fce49e68d08955fdcec9909e6cf.tar.bz2 puzzles-14ed4e9b1ec29fce49e68d08955fdcec9909e6cf.tar.xz | |
Phil Bordelon's patch yesterday should have initialised the GError
to NULL.
[originally from svn r7052]
| -rw-r--r-- | gtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2097,7 +2097,7 @@ int main(int argc, char **argv) if (screenshot_file) { GdkPixbuf *pb; - GError* gerror; + GError *gerror = NULL; midend_redraw(fe->me); |