Guest User

Untitled

a guest
Jun 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. ## gdb session [plain_text]
  2. Program terminated with signal 11, Segmentation fault.
  3. [New process 24004]
  4. #0 strlen () at ../sysdeps/i386/i486/strlen.S:69
  5. 69 ../sysdeps/i386/i486/strlen.S: No such file or directory.
  6. in ../sysdeps/i386/i486/strlen.S
  7. (gdb) bt
  8. #0 strlen () at ../sysdeps/i386/i486/strlen.S:69
  9. #1 0x0809886b in PyString_FromFormatV (format=0xb79eb554 "the sip module implements API v%d.0 but the %s module requires API v%d.%d", vargs=0xbfa0e9b8 "\004") at ../Objects/stringobject.c:211
  10. #2 0x080dce3b in PyErr_Format (exception=0x8144c40, format=0xb79eb554 "the sip module implements API v%d.0 but the %s module requires API v%d.%d") at ../Python/errors.c:522
  11. ...
  12.  
  13. ## stringobject.c
  14. case 's':
  15. s = va_arg(count, char*);
  16. n += strlen(s); # <-- this fails
  17. break;
Add Comment
Please, Sign In to add comment