mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Fix a core-dump.
Submitted by: Simon Marlow <simonm@dcs.gla.ac.uk>
This commit is contained in:
parent
0aee629503
commit
a36ec121e9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12190
1 changed files with 4 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
||||
* ----------------------------------------------------------------------------
|
||||
*
|
||||
* $Id: ctm_pass2.c,v 1.8 1995/05/30 03:47:24 rgrimes Exp $
|
||||
* $Id: ctm_pass2.c,v 1.9 1995/07/12 09:16:10 phk Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -116,9 +116,11 @@ Pass2(FILE *fd)
|
|||
case CTM_F_MD5:
|
||||
if(!name) WRONG
|
||||
if(j & CTM_Q_MD5_Before) {
|
||||
char *tmp;
|
||||
GETFIELD(p,sep);
|
||||
if((st.st_mode & S_IFMT) == S_IFREG &&
|
||||
strcmp(MD5File(name,md5_1),p)) {
|
||||
(tmp = MD5File(name,md5_1)) != NULL &&
|
||||
strcmp(tmp,p)) {
|
||||
fprintf(stderr," %s: %s md5 mismatch.\n",
|
||||
sp->Key,name);
|
||||
if(j & CTM_Q_MD5_Force) {
|
||||
|
|
Loading…
Reference in a new issue