File: krb5err.c
Function: pk_error_init
Error: calling PyDict_SetItemString with NULL as argument 3 (pk_exception.1) at krb5err.c:46
39 void
40 pk_error_init(PyObject *module)
41 {
42   PyObject *dict;
43 
44   dict = PyModule_GetDict(module);
45   pk_exception = PyErr_NewException("krbV.Krb5Error", NULL, NULL);
when PyErr_NewException() fails
46   PyDict_SetItemString(dict, "Krb5Error", pk_exception);
calling PyDict_SetItemString with NULL as argument 3 (pk_exception.1) at krb5err.c:46
47 }