forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10841 lines (7782 loc) · 284 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2003-05-22 Jani Taskinen <[email protected]>
* ext/standard/tests/serialize/004.phpt:
added another test case (due to the problems we saw with 4.3.2RC4)
* (PHP_4_3)
ext/standard/var_unserializer.c:
fix the generated file.
2003-05-22 Derick Rethans <[email protected]>
* ext/curl/config.m4:
- Fixed bug #23751: Confusing configure warning concerning required cURL
version
2003-05-22 Sterling Hughes <[email protected]>
* ext/xml/compat.c
ext/xml/expat_compat.h:
rename namespace to use_namespace to avoid a c++ keyword conflict
fix whitespace surrounding the enums, use tabs please :)
* ext/xml/xml.c:
use zval_ptr_dtor() instead of the more verbose and less correct version
* ext/xml/php_xml.h
ext/xml/xml.c:
take advantage of the fast_call_user_function() api call for all of the
callbacks.
2003-05-22 Wez Furlong <[email protected]>
* makedist:
--force here too for release packages
* (PHP_4_3)
makedist:
Add --force so release package building works
2003-05-21 Jani Taskinen <[email protected]>
* (PHP_4_3)
configure.in
main/php_version.h:
- This branch is now PHP 4.3.3-dev. (no more RCs!)
2003-05-21 Sterling Hughes <[email protected]>
* ext/curl/interface.c:
move all the other callbacks
2003-05-21 Jani Taskinen <[email protected]>
* (PHP_4_3)
configure.in
main/php_version.h:
Go with PHP 4.3.2RC4
2003-05-21 Sterling Hughes <[email protected]>
* ext/curl/interface.c
ext/curl/php_curl.h:
switch over to using fast_call_user_function() with the callbacks
2003-05-21 Jay Smith <[email protected]>
* ext/pspell/pspell.c:
Fix segfault in pspell_new_config(). Also fix grammar
in error messages.
2003-05-21 Ilia Alshanetsky <[email protected]>
* main/main.c:
MFB
* (PHP_4_3)
main/main.c:
Fixed bug #23744
2003-05-21 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
NEWS
NEWS:
BFN
* (PHP_4_3)
ext/informix/ifx.ec:
MFH: Fixed bug #23738 (ifx_copy_blob() crash). (Jani)
* ext/informix/ifx.ec:
Fixed bug #23738 (ifx_copy_blob() crash). (Jani)
* NEWS:
style polizei
2003-05-21 Sara Golemon <[email protected]>
* ext/standard/basic_functions.c
ext/standard/file.c:
Setup FG(default_context) in RINIT/RSHUTDOWN instead of fg_ctor/fg_dtor.
Frees context at right time without double freeing.
2003-05-21 Derick Rethans <[email protected]>
* sapi/cli/php.1.in:
-Fix notice
2003-05-21 Sterling Hughes <[email protected]>
* ext/standard/string.c:
seems there is only the stupid way to be stupid (implode copying array
elements)
at least we check for IS_STRING, which should clear this up 90% of the
time
* ext/standard/string.c:
be stupid, but at least be smart about being stupid.
2003-05-21 Ilia Alshanetsky <[email protected]>
* ext/fdf/fdf.c:
Added missing open_basedir & safe_mode checks
2003-05-21 Rasmus Lerdorf <[email protected]>
* ext/zlib/zlib.c:
Remove bogus commit here too
* (PHP_4_3)
ext/zlib/zlib.c:
Revert bogus commit
2003-05-21 Sterling Hughes <[email protected]>
* ext/standard/string.c:
make brian happy
2003-05-21 Sander Roobol <[email protected]>
* (PHP_4_3)
ext/zlib/zlib.c:
MFH (ob_gzhandler and zlib.output_compression should send a Content-Length
header if the length of the complete compressed output is known)
* ext/zlib/zlib.c:
ob_gzhandler and zlib.output_compression should send a Content-Length
header if the length of the complete compressed output is known
2003-05-21 Sterling Hughes <[email protected]>
* ext/curl/config.m4:
ilia's request is my command
2003-05-21 Wez Furlong <[email protected]>
* ext/standard/file.c
ext/standard/streamsfuncs.c
main/streams/plain_wrapper.c
main/streams/streams.c:
MFB context refcounting and text-mode fopen fixes
* (PHP_4_3)
main/streams.c:
Allow win32 people to fopen($filename, 'rt') to explicitly chose text-mode
files again.
The functionality was accidentally dropped when we introduced our own
fopen
mode string parser.
2003-05-21 Zeev Suraski <[email protected]>
* (PHP_4_3)
sapi/cli/php_cli.c:
Fix typo
* (PHP_4_3)
main/php_streams.h
main/streams.c:
Remove php_stream_open_wrapper_as_file_handle, it was fd-patch specific
* (PHP_4_3)
NEWS
ext/standard/basic_functions.c
ext/standard/browscap.c
main/main.c
main/php_ini.c
sapi/aolserver/aolserver.c
sapi/apache/mod_php4.c
sapi/apache/sapi_apache.c
sapi/apache2filter/sapi_apache2.c
sapi/apache2handler/sapi_apache2.c
sapi/caudium/caudium.c
sapi/cgi/cgi_main.c
sapi/cli/php_cli.c
sapi/isapi/php4isapi.c
sapi/nsapi/nsapi.c
sapi/phttpd/phttpd.c
sapi/pi3web/pi3web_sapi.c
sapi/roxen/roxen.c
sapi/servlet/servlet.c
sapi/thttpd/thttpd.c
sapi/tux/php_tux.c
sapi/webjames/webjames.c:
Revert PHP part of the fd patch
2003-05-21 Georg Richter <[email protected]>
* ext/mysqli/mysqli.c:
MYSQL_NEED_DATA isn't defined anymore in mysql.h
2003-05-21 Marcus Boerger <[email protected]>
* ext/standard/tests/serialize/003.phpt:
This depends on libc and CPU used
2003-05-21 Sara Golemon <[email protected]>
* ext/standard/file.c
ext/standard/file.h
main/streams/php_stream_context.h:
Implement default contexts. For the moment this is useless
but it will be used soon for connection pooling.
2003-05-21 Sascha Schumann <[email protected]>
* (PHP_4_3)
ext/session/session.c:
readd essential line for multiple sessions inside one request
2003-05-21 Ilia Alshanetsky <[email protected]>
* ext/cpdf/cpdf.c
ext/pdf/pdf.c:
Added missing safe_mode checks and corrected a typo in stdout check.
2003-05-21 Marcus Boerger <[email protected]>
* ext/dba/config.m4:
Fix build
2003-05-21 Frank M. Kromann <[email protected]>
* ext/mssql/php_mssql.c
ext/mssql/php_mssql.c:
Fix for bug 23402. Crash when mssql?bind was used incorrectly
2003-05-20 Marcus Boerger <[email protected]>
* ext/dba/tests/skipif.inc:
Fix test (ssen by Dan Torop)
2003-05-20 Wez Furlong <[email protected]>
* (PHP_4_3)
main/network.c:
Implement socket liveness checking for SSL streams when recycling via
pfsockopen.
2003-05-20 Sascha Schumann <[email protected]>
* (PHP_4_3)
ext/session/session.c:
Make error messages less ambiguous
2003-05-20 Wez Furlong <[email protected]>
* (PHP_4_3)
main/streams.c:
Make fread() non-greedy for socket based streams
2003-05-20 Sascha Schumann <[email protected]>
* (PHP_4_3)
ext/session/mod_files.c:
Defensive programming
2003-05-20 Sterling Hughes <[email protected]>
* ext/standard/array.c
ext/standard/basic_functions.c:
initialize these to NULL
2003-05-20 Andrei Zmievski <[email protected]>
* ext/pcre/php_pcre.c:
Put some guards in place.
2003-05-20 Jay Smith <[email protected]>
* ext/standard/browscap.c:
Make get_browser() try harder to find better matches.
2003-05-20 Dan Kalowsky <[email protected]>
* ext/imap/php_imap.c
ext/imap/php_imap.h:
Adding imap_getacl, patch provided by Holger Burbach
2003-05-20 Wez Furlong <[email protected]>
* (PHP_4_3)
ext/standard/url_scanner_ex.c
ext/standard/var_unserializer.c:
Touch and remove WS added by last touch....
* (PHP_4_3)
ext/standard/url_scanner_ex.c
ext/standard/var_unserializer.c:
Touch files
2003-05-20 Sterling Hughes <[email protected]>
* ext/standard/array.c
ext/standard/basic_functions.h:
convert array functions to use fast_call_user_function(), gives a nice
performance win.
2003-05-20 Dan Kalowsky <[email protected]>
* ext/imap/php_imap.c:
NIL, NULL, same thing, but changing for consistency sake
2003-05-20 Sascha Schumann <[email protected]>
* (PHP_4_3)
ext/session/session.c:
Better reinitialize session_status unconditionally
2003-05-20 Hartmut Holzgraefe <[email protected]>
* scripts/ext_skel_ng/php_function.php:
doing the trick like in extension_parser.php
2003-05-20 Brad House <[email protected]>
* ext/mcve/mcve.c:
Properly map mcve_text_code to MCVE_TEXT_Code instead of MCVE_TEXT_AVS.
Properly cast MCVE_TTID.
Correct DVAL arguments to MCVE_Gut and MCVE_Gl.
2003-05-20 Hartmut Holzgraefe <[email protected]>
* scripts/ext_skel_ng/extension_parser.php:
- experimental streams support
- more file types: conf and doc
- requirements/install/configure documentation in configure.xml
- auto-generated PEAR/PECL package.xml files
- auto-generated CREDITS file
- auto-generated EXPERIMENTAL file if release state != stable
- beginning support for test file generation
* scripts/ext_skel_ng/extension.xml:
example for "stream" as parameter and return type
* scripts/ext_skel_ng/php_function.php:
no RCS keyword expansion in template, 2nd try
* scripts/ext_skel_ng/php_function.php:
protect revision entry in template from CVS keyword expansion
* scripts/ext_skel_ng/php_function.php:
- new method to generate test cases for functions
- beginning support for "pass by reference" parameters
* scripts/ext_skel_ng/php_element.php:
just a method name change
* scripts/ext_skel_ng/extension.dtd:
additional tags for experimental streams support
* scripts/ext_skel_ng/ext_skel_ng.php:
create CREDITS, package.xml and maybe EXPERIMENTAL files
create tests
* scripts/ext_skel_ng/TODO:
updated TODOs
* ext/fdf/fdf.c:
zend_is_callable() already checks this ...
* ext/pcntl/pcntl.c:
proto and typo fixes
* ext/standard/info.h:
C++ extensions build fix
* main/streams/userspace.c:
always return timestamps as 'atime', 'mtime' and 'ctime'
no matter what names the underlying platform uses for them
2003-05-20 Sascha Schumann <[email protected]>
* (PHP_4_3)
main/network.c:
initialize err
* (PHP_4_3)
ext/ncurses/php_ncurses.h
ext/session/mod_files.c
ext/session/php_session.h:
Fix use of ZEND_EXTERN_MODULE_GLOBALS which mysteriously includes a
trailing semicolon.
Also add a do {} while (0) construct in php_session.h
2003-05-20 Uwe Schindler <[email protected]>
* sapi/nsapi/nsapi.c:
Set exspected threads to tsrm_startup() to number of threads NSAPI returns
for server
2003-05-20 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
sapi/apache2filter/sapi_apache2.c
sapi/apache2handler/sapi_apache2.c:
Revisit the braindead patch only for this branch
2003-05-20 Ilia Alshanetsky <[email protected]>
* ext/pdf/pdf.c:
Added missing safe_mode & open_basedir checks.
2003-05-20 Wez Furlong <[email protected]>
* (PHP_4_3)
ext/standard/file.c
ext/standard/fsock.c
main/streams.c:
Much better fix for refcount issues with contexts, and fix a leak in
context
value storage.
2003-05-20 Jani Taskinen <[email protected]>
* ext/xml/config.m4:
- Go back to using --disable-xml and --enable-xml
. Require use of --with-libxml-dir and --with-libexpat-dir for ext/xml.
Allows other extensions to use --with-expat-dir for now.
2003-05-20 Marcus Boerger <[email protected]>
* ext/pgsql/tests/01createdb.phpt
ext/pgsql/tests/02connection.phpt
ext/pgsql/tests/03sync_query.phpt
ext/pgsql/tests/04async_query.phpt
ext/pgsql/tests/05large_object.phpt
ext/pgsql/tests/06copy.phpt
ext/pgsql/tests/07optional.phpt
ext/pgsql/tests/08escape.phpt
ext/pgsql/tests/09notice.phpt
ext/pgsql/tests/10pg_convert.phpt
ext/pgsql/tests/11pg_meta_data.phpt
ext/pgsql/tests/12pg_insert.phpt
ext/pgsql/tests/13pg_select.phpt
ext/pgsql/tests/14pg_update.phpt
ext/pgsql/tests/15pg_delete.phpt
ext/pgsql/tests/16pg_result_status.phpt
ext/pgsql/tests/17result.phpt
ext/pgsql/tests/18pg_escape_bytea.phpt
ext/pgsql/tests/19pg_ping.phpt
ext/pgsql/tests/20pg_get_pid.phpt
ext/pgsql/tests/21pg_get_notify.phpt
ext/pgsql/tests/98old_api.phpt
ext/pgsql/tests/9999dropdb.phpt
ext/pgsql/tests/async_query.inc
ext/pgsql/tests/connection.inc
ext/pgsql/tests/copy.inc
ext/pgsql/tests/createdb.inc
ext/pgsql/tests/dropdb.inc
ext/pgsql/tests/escape.inc
ext/pgsql/tests/informational.inc
ext/pgsql/tests/large_object.inc
ext/pgsql/tests/notice.inc
ext/pgsql/tests/old_api.inc
ext/pgsql/tests/optional.inc
ext/pgsql/tests/pg_convert.inc
ext/pgsql/tests/pg_delete.inc
ext/pgsql/tests/pg_escape_bytea.inc
ext/pgsql/tests/pg_get_notify.inc
ext/pgsql/tests/pg_get_pid.inc
ext/pgsql/tests/pg_insert.inc
ext/pgsql/tests/pg_meta_data.inc
ext/pgsql/tests/pg_ping.inc
ext/pgsql/tests/pg_result_status.inc
ext/pgsql/tests/pg_select.inc
ext/pgsql/tests/pg_update.inc
ext/pgsql/tests/result.inc
ext/pgsql/tests/sync_query.inc:
Reorganized tests
* ext/standard/tests/serialize/003.phpt:
Fix Test (2nd time)
2003-04-07 Jani Taskinen <[email protected]>
* NEWS:
Removed entry that is in the PHP_4_3 branch..
* NEWS:
reorder
* (PHP_4_3)
NEWS:
BFN
2003-04-07 Sara Golemon <[email protected]>
* NEWS
ext/standard/http_fopen_wrapper.c:
Introduce support for context options 'method', 'header', 'content'
2003-04-06 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS:
BFN
* (PHP_4_3)
ext/standard/datetime.c:
MFH: Fixed bug #23071 (when DST in effect, date("T") crashed PHP)
* ext/standard/datetime.c:
Fixed bug #23071 (when DST in effect, date("T") crashed PHP)
2003-04-06 Marcus Boerger <[email protected]>
* .gdbinit:
Support for ZTS
2003-04-06 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
.gdbinit:
MFH(r-1.5): improved zmemcheck macro so it displays the size of each memory
block too.
* .gdbinit:
Improved zmemcheck macro so it displays the size of each memory block too.
* (PHP_4_3)
.gdbinit:
MFH(r-1.4): improved readability of zmemcheck output
* .gdbinit:
Improved readability of zmemcheck output
* .gdbinit:
Added zmemcheck macro, which may help you examine the memory blocks being
handled by the memory manager.
2003-04-06 Jani Taskinen <[email protected]>
* NEWS:
reorder
2003-04-05 Marcus Boerger <[email protected]>
* ext/gd/gd.c:
Collate version handling and bump up version (noticed by Peter Neuman)
2003-04-05 Christian Stocker <[email protected]>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
Useful for adding and parsing (well-balanced) document fragments.
- Bumped up API version number
2003-04-05 Jani Taskinen <[email protected]>
* configure.in:
--enable-all is not useful at all, removed from help
* ext/sockets/php_sockets.h:
Better ifdef it out here too
2003-04-05 Sara Golemon <[email protected]>
* ext/openssl/xp_ssl.c:
Debug watches probably don't belong in CVS.
2003-04-05 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS:
GD news.
* ext/gd/libgd/gd.c
ext/gd/libgd/gd.h
ext/gd/libgd/gd_gd.c
ext/gd/libgd/gd_gd2.c
ext/gd/libgd/gd_io.h
ext/gd/libgd/gd_jpeg.c
ext/gd/libgd/gd_png.c
ext/gd/libgd/gd_topal.c
ext/gd/libgd/gdcache.c
ext/gd/libgd/gdcache.h
ext/gd/libgd/gdft.c
ext/gd/libgd/gdkanji.c:
Syncronized bunbled GD library with gd 2.0.12
2003-04-05 Marcus Boerger <[email protected]>
* run-tests.php:
Include ldd output
2003-04-05 Sascha Schumann <[email protected]>
* php.ini-dist
php.ini-recommended:
dividend -> divisor
* ext/session/php_session.h
ext/session/session.c:
dividend -> divisor
Submitted by: Jesus M. Castagnetto <[email protected]>
2003-04-05 Brian France <[email protected]>
* ext/curl/multi.c:
Added HAVE_CONFIG_H check so the phpize build method works
2003-04-05 Sara Golemon <[email protected]>
* main/streams/xp_socket.c:
Add IPv6 support to stream_socket_client/server()
2003-04-05 Pierre-Alain Joye <[email protected]>
* pear/package-PEAR.xml:
what? maintainer is not a valid role :)
2003-04-04 Wez Furlong <[email protected]>
* ext/standard/streamsfuncs.c:
Warning fix
2003-04-04 Sara Golemon <[email protected]>
* ext/standard/streamsfuncs.c:
User shouldn't have to initialize this pass-by-ref parameter
2003-04-04 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/sockets/config.m4
ext/sockets/sockets.c:
MFH: added check for struct cmsghdr. now sockets extension can be built
under cygwin
2003-04-04 Jani Taskinen <[email protected]>
* ext/rpc/java/config.m4:
- Fixed bug #22944 (--with-java "make install" fails)
2003-04-04 Sterling Hughes <[email protected]>
* CODING_STANDARDS:
both these entries are bad, and were never agreed upon.
assert() usage is a controversial concept at best.
docref() is something quite a few of us strong disagree with. suspending
this until further discussion.
2003-04-04 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/curl/curl.c:
Fix bug #23048, CURLOPT_ENCODING is not always available
2003-04-04 Sterling Hughes <[email protected]>
* ext/curl/multi.c:
forgot to commit this.
2003-04-04 Jani Taskinen <[email protected]>
* ext/gd/config.m4:
Check that t1lib has T1_StrError
* configure.in
ext/sockets/config.m4:
- Checks specific to some extension belong in the extension's config.m4
2003-04-04 Andrei Zmievski <[email protected]>
* main/php.h:
Introduce ZEND_ME() and ZEND_METHOD() macros. Use these for declaring
class methods to avoid name collisions.
2003-04-04 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/sockets/sockets.c:
MFH(r-1.135): fixed memleak in socket_select()
* ext/sockets/sockets.c:
Fixed memleak in socket_select
* configure.in
ext/sockets/sockets.c:
Added cmsghdr check. Now sockets extension can be built under cygwin.
* (PHP_4_3)
TODO_SEGFAULTS:
Sorry, forgot these ones
* (PHP_4_3)
TODO_SEGFAULTS:
renumbering
* (PHP_4_3)
TODO_SEGFAULTS:
segfault busting news
replacing one tab to 4 spaces
* (PHP_4_3)
ext/mbstring/mbfilter.c:
MFH(r-1.55): added missing sanity check, which was causing segfault.
* ext/mbstring/mbfilter.c:
Added missing sanity check, which was causing segfault.
2003-04-04 Wez Furlong <[email protected]>
* ext/standard/streamsfuncs.c:
Simplify and enhance readability.
2003-04-04 Sascha Schumann <[email protected]>
* main/output.c:
Backout Jani's commit to resync branches
2003-04-04 Sara Golemon <[email protected]>
* ext/standard/basic_functions.c
ext/standard/streamsfuncs.c
ext/standard/streamsfuncs.h:
Added stream_get_transports()
* main/streams/streams.c:
Prevent php_stream_get_record from grabbing more than maxlen characters
2003-04-04 Ilia Alshanetsky <[email protected]>
* ext/gd/gd.c:
Might as well disallow 0x0 images.
Thanks Marcus.
2003-04-04 Pierre-Alain Joye <[email protected]>
* pear/package-PEAR.xml:
- Add some releases notes
- Add myself in the maintainer list (stig)
2003-04-04 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Notes about various possible integer overflows in bundled gd library.
* (PHP_4_3)
TODO_SEGFAULTS:
More gd stuff.
* (PHP_4_3)
TODO_SEGFAULTS:
Fixed segv as well as info about new segvs in gd.
2003-04-04 Stig Bakken <[email protected]>
* pear/package-PEAR.xml:
- whip script files where they belong
2003-04-04 Ilia Alshanetsky <[email protected]>
* ext/gd/gd.c:
Fix segfault in imagecopyresized().
2003-04-04 Stig Bakken <[email protected]>
* pear/scripts/pear.sh:
- look for pearcmd.php in the right directory when run from a cvs checkout
* pear/package-PEAR.xml
pear/scripts/pear.sh
pear/scripts/pear_unices:
- rename pear_unices to pear.sh and make it a pure shell script
2003-04-04 Jani Taskinen <[email protected]>
* ext/gd/gd.c:
- Better errors for T1lib.
- Sanity check into imagepsextendfont().
2003-04-03 Stig Bakken <[email protected]>
* pear/package-PEAR.xml:
- pear.in is renamed to pearcmd.php
* pear/package-PEAR.xml
pear/scripts/.cvsignore
pear/scripts/pear.in
pear/scripts/pear_unices
pear/scripts/pearcmd.php:
- paj's last Windows install fixes
* pear/scripts/pear.bat:
- use PHP_PEAR_* environment variables (paj)
* pear/PEAR/Frontend/CLI.php:
- disable table borders in output to save width
* pear/OS/Guess.php:
- windows bugfix
* pear/PEAR.php:
- support both error codes and messages in the second parameter to
PEAR::isError()
2003-04-03 Jani Taskinen <[email protected]>
* ext/gd/gd.c:
Use php_error_docref.
2003-04-03 Stig Bakken <[email protected]>
* pear/PEAR/Registry.php:
- remove track_errors ini fiddling, was a PHP bug that should be fixed now
* pear/PEAR/Common.php:
- initialize pkginfo with an empty provides array
2003-04-03 Rasmus Lerdorf <[email protected]>
* ext/exif/exif.c:
MFB
2003-04-03 Marcus Boerger <[email protected]>
* configure.in:
Check for flex version 2.5.4
2003-04-03 Sascha Schumann <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
one in socket_select
* (PHP_4_3)
TODO_SEGFAULTS:
augment summary with fixes which predate the list
* (PHP_4_3)
TODO_SEGFAULTS:
add chunk_split
* (PHP_4_3)
TODO_SEGFAULTS:
another one fixed, a new one found
* ext/gd/gd.c:
Fix segfaults in imagecreate/imagecreatetruecolor
* (PHP_4_3)
TODO_SEGFAULTS:
fix
* (PHP_4_3)
TODO_SEGFAULTS:
update regarding dbase extension
2003-04-03 Jani Taskinen <[email protected]>
* main/output.c:
WS & CS fix
2003-04-03 Sara Golemon <[email protected]>
* ext/standard/array.c:
Kludgy fix for floating point drift causing problems like
range(1.0,1.5,0.1) == array(1.0,1.1,1.2,1.3,1.4);
2003-04-03 Sascha Schumann <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Update - we purged the full list\!
* main/output.c:
Add some checks and avoid passing invalid data to call_user_function_ex.
Fixes some heap corruption and allocation of negative amounts of memory.
* ext/standard/basic_functions.c:
Prevent entering of anything but arrays/strings in register_shutdown_func
Noticed by: Jan Schneider
2003-04-03 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
ext/exif/exif.c:
Clean up the parameter handling here
2003-04-03 Jani Taskinen <[email protected]>
* NEWS:
reorder
2003-04-03 Christian Stocker <[email protected]>
* NEWS:
new domxml_elem_set_attribute_node() should have gone into NEWS, but I
forgot..
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
- Added domxml_elem_set_attribute_node() method. (Rob Richards)
2003-04-03 Georg Richter <[email protected]>
* ext/mysqli/mysqli_api.c:
fixed mysqli_prepare_result
* ext/mysqli/tests/047.phpt:
fixed output
2003-04-03 Derick Rethans <[email protected]>
* ext/standard/string.c
ext/standard/string.c:
- CS
2003-04-03 Jani Taskinen <[email protected]>
* ext/bcmath/bcmath.c:
Another CS fix.
* ext/standard/basic_functions.c:
CS fix
2003-04-03 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Unable to reproduce..
* (PHP_4_3)
TODO_SEGFAULTS:
segfault busting news
* (PHP_4_3)
ext/xml/xml.c:
MFH(r-1.117): fixed segfault in xml_parser_create()
* ext/xml/xml.c:
Fixed segfault in xml_parser_create()
2003-04-03 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS:
Bug fixing news.
* (PHP_4_3)
ext/ftp/php_ftp.c:
Fixed bug #23004 (When ftp_close() is called, sent QUIT to the ftp server)
2003-04-03 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
main/output.c:
MFH(r-1.152): fixed memleak in output buffering facility
* main/output.c:
Fixed memleak in output buffering facility
* (PHP_4_3)
TODO_SEGFAULTS:
Removed i18n_convert() from the entries because that is an alias for
mb_convert_encoding()
2003-04-03 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Update
2003-04-03 Moriyoshi Koizumi <[email protected]>