From 072242fe2533f02c001a0e9a94bdd833506a3efe Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Wed, 29 Mar 2006 17:55:32 +0200 Subject: initialize tmp_fd properly (valgrind) --- src/PSEditor.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/PSEditor.cxx') diff --git a/src/PSEditor.cxx b/src/PSEditor.cxx index a2df43f..9eeffb9 100644 --- a/src/PSEditor.cxx +++ b/src/PSEditor.cxx @@ -30,6 +30,7 @@ PSEditor::PSEditor(int X,int Y,int W, int H) : PSEditWidget(X, Y, W, H) { loaded = 0; mod = 0; ps_level = 1; + tmp_fd = -1; } @@ -111,7 +112,7 @@ int PSEditor::handle(int event) { int PSEditor::open_file(FILE *fp) { - if (tmp_fd) { + if (tmp_fd >= 0) { close(tmp_fd); } -- cgit v1.2.3