Commit f6e9619a by Marcus Meissner Committed by Michael Matz

re PR java/14689 (jcf-path.c missing closedir)

	PR java/14689:
	* jcf-path.c (jcf_path_extdirs_arg): Add missing closedir.

From-SVN: r79948
parent 7caf53cb
2004-03-25 Marcus Meissner <meissner@suse.de>
PR java/14689:
* jcf-path.c (jcf_path_extdirs_arg): Add missing closedir.
2004-03-23 Tom Tromey <tromey@redhat.com>
PR java/14315:
......
......@@ -371,6 +371,8 @@ jcf_path_extdirs_arg (const char *cp)
add_entry (&extensions, name, 0);
}
}
if (dirp)
closedir (dirp);
}
if (! *endp)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment