/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/password-prompt.c

  • Committer: Björn Påhlsson
  • Date: 2011-07-25 18:47:45 UTC
  • mto: This revision was merged to the branch mainline in revision 489.
  • Revision ID: belorn@fukt.bsnet.se-20110725184745-leavsoyu1hll3mdp
free dirents in password-prompt

Show diffs side-by-side

added added

removed removed

Lines of Context:
208
208
    return 1;
209
209
  }
210
210
  
211
 
  struct dirent **direntries;
 
211
  struct dirent **direntries = NULL;
212
212
  int ret;
213
213
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
214
214
  if (ret == -1){
215
215
    error(1, errno, "scandir");
216
216
  }
 
217
  free(dirent);
217
218
  return ret > 0;
218
219
}
219
220