Skip to content

Commit

Permalink
Fixed proxy_path comparison (check issue #71).
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.gridway.org/gridway/trunk@187 9b4b2aa8-92f0-458a-8103-c3834d721760
  • Loading branch information
alorca committed Oct 30, 2009
1 parent b6694af commit 80c9864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/gw_client_init.c
Expand Up @@ -204,7 +204,7 @@ void gw_client_finalize()
if ( gw_client.group != NULL )
free(gw_client.group);

if ( gw_client.proxy_path != NULL )
if ( gw_client.proxy_path != strdup("") )
free(gw_client.proxy_path);

for (i = 0 ; i < gw_client.number_of_jobs; i++)
Expand Down

0 comments on commit 80c9864

Please sign in to comment.