~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to crypt.c

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2009-06-17 17:17:28 UTC
  • mfrom: (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20090617171728-61dkl7w5fgn7ybdq
Tags: upstream-1.5.20
Import upstream version 1.5.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
538
538
    fputc (c, fp);
539
539
    
540
540
  }
541
 
  fclose (fp);
 
541
  safe_fclose (&fp);
542
542
 
543
543
  return 0;
544
544
}
613
613
        if (Context->hdrs[Context->v2r[i]]->security & ENCRYPT &&
614
614
            !crypt_valid_passphrase (Context->hdrs[Context->v2r[i]]->security))
615
615
        {
616
 
          fclose (fpout);
 
616
          safe_fclose (&fpout);
617
617
          break;
618
618
        }
619
619
 
695
695
    }
696
696
  }
697
697
      
698
 
  fclose (fpout);
 
698
  safe_fclose (&fpout);
699
699
  if (isendwin())
700
700
    mutt_any_key_to_continue (NULL);
701
701