Skip to content

Commit

Permalink
* ecosadmin.tcl: Prevent calls to 'cygpath' with an empty path argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
jld committed Mar 5, 2003
1 parent 3a7493a commit 4bbec06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2003-03-05 John Dallaway <[email protected]>

* ecosadmin.tcl: Prevent calls to 'cygpath' with an empty
path argument.

2003-02-25 Andrew Lunn <[email protected]>

* ecos.db: Added the Simple Network Time Protocol (SNTP) client.
Expand Down
2 changes: 1 addition & 1 deletion packages/ecosadmin.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ proc ecosadmin::is_empty_directory { dir } {

proc ecosadmin::get_pathname_for_tcl { name } {

if { $ecosadmin::windows_host } {
if { ( $ecosadmin::windows_host ) && ( $name != "" ) } {

# If there is no logical drive letter specified
if { [ string match "?:*" $name ] == 0 } {
Expand Down

0 comments on commit 4bbec06

Please sign in to comment.