summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/malloc.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2004-06-24Working hcreate(3) et al from NetBSD (cgd) via ray at cyth dot net.millert3-5/+401
Now passes the regress tests.
2004-06-24hsearch regress from NetBSD via ray at cyth dot netmillert3-2/+138
2004-06-21errno -> err in a structure. OK deraadt@marc1-4/+4
2004-06-21make test successful even when /etc/services is changeditojun2-43/+35
2004-06-15machdep.xcrypt now has a different meaning: Instead of > 0 indicatingderaadt2-28/+32
that AES is there, we now have 3 flag bits: C3_HAS_AES, C3_HAS_SHA (SHA1 & SHA256), and C3_HAS_MM (RSA). Change this code to only look at C3_HAS_AES for now.
2004-06-07major bump to libc and libpthread to break the dependency of amarc4-96/+84
particular implementation of libpthread for libc. libc no longer needs pthread.h to compile. OK millert@, brad@, tedu@
2004-06-03An optional argument cannot start with '-', even if permutation ismillert1-4/+5
disabled. Magne Oestlyngen.
2004-05-27some updates for openssl smime;jmc1-197/+207
2004-05-06improved man page, with example and error strings, suggested by deraadt@tedu1-36/+56
man help jmc@
2004-05-06typo; sq@oganer.netderaadt1-2/+2
2004-05-04sort SEE ALSO;jmc1-2/+2
2004-05-03Be smarter about signed vs. unsigned (produces better error messages).millert1-2/+2
OK otto@
2004-05-03Missed this in the __strerror() removal.millert1-2/+2
2004-05-03No longer need __strerror(3) now that we use strerror_r() inside libc.millert1-46/+0
2004-05-03Add _Exit(3) as per C99. Discussed with espie@ some time ago.millert3-12/+64
2004-05-03typo spotted by grangetedu1-2/+2
2004-05-03strtonum, a nicer version of strtoll, by millert and myself.tedu3-2/+191
ok deraadt@ millert@
2004-05-03Do a better job of documenting strerror_r() and add an ERRORS section.millert1-15/+43
2004-05-03build the error message in strerror_r.c directly, avoiding one copy there.espie3-120/+109
handle a few subtle details caught by the regression tests: correct termination, non copying if buffer length == 0, errno setting. let all former users of __strerror go through strerror_r. Work by Todd Miller and I. Okay millert@.
2004-05-02more tests, okay millert@ (we probably don't pass them all yet, and willespie2-2/+73
after the strerror_r code is committed).
2004-05-01let __strerror fill precisely the part of the buffer it can.espie1-17/+18
okay millert@
2004-04-30Add tests for strerror.espie4-2/+47
2004-04-30Let __strerror work by fixing a number of problems. Work by tholo and I,espie1-22/+52
okay millert@. - atoi was bogus. - atoi was not reentrant. - there's no reason to cast stuff to unsigned int.
2004-04-27do not link ssltest.c into libssl, stops main/doit symbols from beingavsm1-2/+2
exported. no bump needed since nothing should use them, markus@ ok
2004-04-25update missing pieces from 0.9.7d; ok henningmarkus7-23/+135
crank minor for API extensions
2004-04-25avoid NULL deref; from danh@markus1-2/+5
2004-04-25from openssl, 1.50.2.9, make S/MIME encrypt work again.markus2-8/+18
2004-04-19options sort and update for sess_id;jmc1-44/+45
2004-04-16more display/list fixes, and a little whitespace;jmc1-2/+1
2004-04-14remove references to rfc 2553, since 3493 obsoletes it;jmc1-11/+2
ok itojun@
2004-04-14implement RFC3493 AI_NUMERICSERV. tedu okitojun2-47/+40
2004-04-12sync w/ 0.9.7d import (one typo);jmc1-2/+2
2004-04-12Clean up malloc_active state when aborting.tdeval1-3/+5
This allows for safe abort handling, without tripping into false recursivity problems. Ok tedu@, deraadt@
2004-04-08document s_time (from s_time.pod);jmc1-67/+255
consistency fixes;
2004-04-08backout for nowmarkus6-134/+22
2004-04-08merge 0.9.7dmarkus210-1962/+2613
2004-04-07import openssl-0.9.7dmarkus160-1237/+2880
2004-04-07import openssl-0.9.7dmarkus79-509/+777
2004-04-06sort SYNOPSIS and options, and various other fixes,jmc1-265/+265
for s_client and s_server;
2004-04-06some of these functions are prototyped in pwd.h; ok deraadt@djm1-1/+2
2004-04-02Some nasty test cases involving back references that causedotto1-1/+6
unbounded recursion.
2004-04-02check the signals for exceptions and do siginfo in the signal handler; also ↵mickey1-30/+39
some style
2004-04-01document ipv6ification changes to s_client, polished by jmc@djm1-3/+17
2004-04-01let rcmdsh work on hosts that don't have an ipv4 address.marc1-3/+4
If it works it is fine with me -- millert@
2004-03-31support IPv6 connections in "openssl s_client", adding -4 and -6 options todjm3-96/+45
force protocol; ok itojun@
2004-03-22Unbreak rmd160. Was broken on sparc64 when compiled with gcc3. Fix and reporthshoexer2-4/+4
by Simon Kellner. XXX This is only a temporary work-around and we still need a REAL fix for XXX this issue. Testing on different archs by marc@ tdvall@ millert@ otto@ ho@ miod@ hshoexer@ ok deraadt@
2004-03-21Insert missing ABORT if EC_GROUP_copy() fails.tom2-2/+2
ok markus@
2004-03-17return(00); -> return(0); markus@ okaaron2-4/+4
2004-03-17out-of-bounds read in (unused) kerberos ciphersuites (CAN-2004-0112)markus2-0/+32
2004-03-17avoid null-pointer deref (aka CAN-2004-0079)markus2-0/+16
see http://www.openssl.org/news/secadv_20040317.txt