changelog Tue Dec 24 20:34:25 2002 EDT
Modified files:
/php4 ChangeLog
Log:
ChangeLog update
Index: php4/ChangeLog
diff -u php4/ChangeLog:1.1218 php4/ChangeLog:1.1219
--- php4/ChangeLog:1.1218 Mon Dec 23 20:31:43 2002
+++ php4/ChangeLog Tue Dec 24 20:34:22 2002
@@ -1,3 +1,46 @@
+2002-12-24 Stefan Esser <[EMAIL PROTECTED]>
+
+ * sapi/cgi/cgi_main.c:
+ fix compile warning
+
+ * ext/mime_magic/mime_magic.c
+ sapi/cgi/cgi_main.c:
+ MFH
+
+ * ext/mime_magic/mime_magic.c:
+ do correct casting
+
+2002-12-24 Ilia Alshanetsky <[EMAIL PROTECTED]>
+
+ * ext/ncurses/ncurses_functions.c:
+ Removed pointless assignment.
+
+ * ext/ncurses/ncurses_functions.c:
+ The -1 is no longer needed, since it is done automatically by strlcpy().
+
+ * ext/ncurses/ncurses_functions.c:
+ Changed strncpy() to strlcpy().
+
+ * ext/ncurses/ncurses_fe.c
+ ext/ncurses/ncurses_functions.c:
+ A variety of CS style fixes, which include:
+ * Changed all argument parsing to use the new zend_parse_parameters()
+ * If a function is unavailable due to lack of support for a certain
+ feature,
+ do not make the function avaliable, rather then making it print an
+ error
+ saying that the functionality offered by the function is not avaliable.
+ * Lots of WS fixes all over the file.
+ * Change strcpy() to strncpy() to prevent possible buffer overflows.
+ Fixed a bug in ncurses_pair_content(), 1st parameter was wrong.
+ Fixed several function prototypes that failed to indicate that functions
+ accepted arguments by reference.
+
+2002-12-24 Melvyn Sopacua <[EMAIL PROTECTED]>
+
+ * ext/standard/dir.c:
+ MFH: crash fix in glob() with no results
+
2002-12-23 Melvyn Sopacua <[EMAIL PROTECTED]>
* ext/standard/dir.c: