/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-request.c

Several memory leaks detected by valgrind fixed
A bugg fixed that could cause seg fault.

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
  
316
316
  /* Seek back to the beginning of the GPGME plaintext data buffer */
317
317
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
318
 
    perror("pgpme_data_seek");
 
318
    perror("gpgme_data_seek");
319
319
    plaintext_length = -1;
320
320
    goto decrypt_end;
321
321
  }
451
451
  
452
452
  gnutls_certificate_free_credentials(mc->cred);
453
453
  gnutls_global_deinit();
 
454
  gnutls_dh_params_deinit(mc->dh_params);
454
455
  return -1;
455
456
}
456
457
 
830
831
                          .dh_bits = 1024, .priority = "SECURE256"
831
832
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
832
833
    bool gnutls_initalized = false;
833
 
    bool pgpme_initalized = false;
 
834
    bool gpgme_initalized = false;
834
835
    
835
836
    {
836
837
      struct argp_option options[] = {
934
935
    }
935
936
    
936
937
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
937
 
      fprintf(stderr, "pgpme_initalized failed\n");
 
938
      fprintf(stderr, "gpgme_initalized failed\n");
938
939
      exitcode = EXIT_FAILURE;
939
940
      goto end;
940
941
    } else {
941
 
      pgpme_initalized = true;
 
942
      gpgme_initalized = true;
942
943
    }
943
944
    
944
945
    /* If the interface is down, bring it up */
1098
1099
    if (gnutls_initalized){
1099
1100
      gnutls_certificate_free_credentials(mc.cred);
1100
1101
      gnutls_global_deinit ();
 
1102
      gnutls_dh_params_deinit(mc.dh_params);
1101
1103
    }
1102
1104
 
1103
 
    if(pgpme_initalized){
 
1105
    if(gpgme_initalized){
1104
1106
      gpgme_release(mc.ctx);
1105
1107
    }
1106
1108
 
1133
1135
            free(fullname);
1134
1136
          }
1135
1137
        }
 
1138
        closedir(d);
1136
1139
      }
1137
1140
      ret = rmdir(tempdir);
1138
1141
      if(ret == -1){