Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    r3687413 r922f589  
    258258
    259259  if (stat(subsfile, &statbuff) != 0) {
     260    owl_free(subsfile);
    260261    if (error_on_nofile == 1)
    261262      return -1;
     
    373374  subsfile = owl_zephyr_dotfile(".anyone", filename);
    374375
    375   if (stat(subsfile, &statbuff) == -1)
     376  if (stat(subsfile, &statbuff) == -1) {
     377    owl_free(subsfile);
    376378    return 0;
     379  }
    377380
    378381  ZResetAuthentication();
Note: See TracChangeset for help on using the changeset viewer.