~exarkun/pyopenssl/pkey-modulus

« back to all changes in this revision

Viewing changes to OpenSSL/crypto/pkcs7.c

  • Committer: Jean-Paul Calderone
  • Date: 2011-04-25 23:41:32 UTC
  • mfrom: (128.2.10 run-on-pypy)
  • Revision ID: exarkun@divmod.com-20110425234132-0f76yf59poaegjxu
Various fixes which make pyOpenSSL more likely to work with PyPy

  * Fix a consistent refcounting bug across most modules
  * switch from tp_setattr to tp_setattro
  * Fix a general bug in error handling when setting invalid X509Name attributes

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
        return 0;
205
205
    }
206
206
 
 
207
    /* PyModule_AddObject steals a reference.
 
208
     */
 
209
    Py_INCREF((PyObject *)&crypto_PKCS7_Type);
207
210
    if (PyModule_AddObject(module, "PKCS7Type", (PyObject *)&crypto_PKCS7_Type) != 0) {
208
211
        return 0;
209
212
    }