1.26b - phtml added to the dictionary, and another MALLOC_CHECK workaround

This commit is contained in:
Steve Pinkham 2010-03-26 09:39:20 -04:00
parent b05dbeedfa
commit dc378471b7
6 changed files with 18 additions and 6 deletions

View File

@ -1,9 +1,16 @@
Version 1.26b:
--------------
- phtml added to the dictionary.
- Yet another workaround for MALLOC_CHECK_. Grr.
Version 1.25b:
--------------
- A limit on the number of identically named path elements
added. This is a last-resort check against endless recursion
(e.g., for 'subdir' -> '.' symlinks).
- A limit on the number of identically named path elements added. This
is a last-resort check against endless recursion (e.g., for 'subdir'
-> '.' symlinks).
Version 1.24b:
--------------
@ -46,8 +53,8 @@ Version 1.16b:
- Fixed a typo introduced in 1.16 to index.html (d'oh).
- Further refinements to Makefile CFLAGS / LIBS / LDFLAGS to keep
package maintainers happy.
- Further refinements to Makefile CFLAGS / LIBS / LDFLAGS to keep package
maintainers happy.
Version 1.15b:
--------------

View File

@ -23,7 +23,7 @@
#ifndef _HAVE_CONFIG_H
#define _HAVE_CONFIG_H
#define VERSION "1.25b"
#define VERSION "1.26b"
#define USE_COLOR 1 /* Use terminal colors */

View File

@ -58,6 +58,7 @@ e 1 1 1 part
e 1 1 1 pdf
e 1 1 1 php
e 1 1 1 php3
e 1 1 1 phtml
e 1 1 1 pl
e 1 1 1 pm
e 1 1 1 png

View File

@ -40,6 +40,7 @@ e 1 1 1 out
e 1 1 1 part
e 1 1 1 php
e 1 1 1 php3
e 1 1 1 phtml
e 1 1 1 pl
e 1 1 1 pm
e 1 1 1 py

View File

@ -55,6 +55,7 @@ e 1 1 1 part
e 1 1 1 pdf
e 1 1 1 php
e 1 1 1 php3
e 1 1 1 phtml
e 1 1 1 pl
e 1 1 1 pm
e 1 1 1 png

View File

@ -145,6 +145,8 @@ int main(int argc, char** argv) {
struct timeval tv;
u64 st_time, en_time;
unsetenv("MALLOC_CHECK_");
signal(SIGINT, ctrlc_handler);
signal(SIGWINCH, resize_handler);
signal(SIGPIPE, SIG_IGN);