~sileht/pyopenssl/pyopenssl

« back to all changes in this revision

Viewing changes to OpenSSL/crypto/x509ext.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:
316
316
        return 0;
317
317
    }
318
318
 
 
319
    /* PyModule_AddObject steals a reference.
 
320
     */
 
321
    Py_INCREF((PyObject *)&crypto_X509Extension_Type);
319
322
    if (PyModule_AddObject(module, "X509Extension",
320
323
                           (PyObject *)&crypto_X509Extension_Type) != 0) {
321
324
        return 0;
322
325
    }
323
326
 
 
327
    /* PyModule_AddObject steals a reference.
 
328
     */
 
329
    Py_INCREF((PyObject *)&crypto_X509Extension_Type);
324
330
    if (PyModule_AddObject(module, "X509ExtensionType",
325
331
                           (PyObject *)&crypto_X509Extension_Type) != 0) {
326
332
        return 0;