You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by gr...@apache.org on 2002/09/14 04:11:36 UTC

cvs commit: httpd-python/src mod_python.c

grisha      2002/09/13 19:11:36

  Modified:    src      mod_python.c
  Log:
  ext in python_handler() was uninitialized causing a segfault for some
  
  Revision  Changes    Path
  1.75      +2 -2      httpd-python/src/mod_python.c
  
  Index: mod_python.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/mod_python.c,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- mod_python.c	12 Sep 2002 18:24:06 -0000	1.74
  +++ mod_python.c	14 Sep 2002 02:11:35 -0000	1.75
  @@ -806,7 +806,7 @@
       py_config * conf;
       int result;
       const char *interp_name = NULL;
  -    const char *ext;
  +    const char *ext = NULL;
       hl_entry *hle = NULL;
       hl_entry *dynhle = NULL;