In the def of vget_assign(), I see

static char *in_domain = NULL;
static int in_domain_size = 0;

and then the conditionals

    if ( in_domain_size != 0 && 
         in_domain!=NULL && in_dir!=NULL &&
         strncmp( in_domain, domain, in_domain_size )==0 ){
[...]

    if ( in_domain != NULL ) free(in_domain);

Are not these conditionals redundant since the the tests fail
immediately for  in_domain and in_domain_size are both 0?

Thx,

Mate
-- 
---
Mate Wierdl | Dept. of Math. Sciences | University of Memphis  

Reply via email to