<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/lib/libc/stdio/vfprintf.c, branch release/3.3.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F3.3.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F3.3.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>1999-09-16T08:26:13Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>1999-09-16T08:26:13Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>1999-09-16T08:26:13Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=5be28542797ac26e17de490f50e0830003596d38'/>
<id>urn:sha1:5be28542797ac26e17de490f50e0830003596d38</id>
<content type='text'>
'RELENG_3_3_0_RELEASE'.

This commit was manufactured to restore the state of the 3.3-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
</entry>
<entry>
<title>$Id$ -&gt; $FreeBSD$</title>
<updated>1999-08-29T14:49:43Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1999-08-29T14:49:43Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=f376ef90540b4d5b6e7f467620e91404ba306d89'/>
<id>urn:sha1:f376ef90540b4d5b6e7f467620e91404ba306d89</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC rev. 1.21: 'll' modifier.</title>
<updated>1999-05-04T13:06:29Z</updated>
<author>
<name>Dmitrij Tejblum</name>
<email>dt@FreeBSD.org</email>
</author>
<published>1999-05-04T13:06:29Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=2fee0568bc05ee338d948e2f0437a7cae7764aad'/>
<id>urn:sha1:2fee0568bc05ee338d948e2f0437a7cae7764aad</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace memory leaking instances of realloc with non-leaking reallocf.</title>
<updated>1998-09-16T04:17:47Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>1998-09-16T04:17:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e8420087b0ae4a2d0611cd2f6413d150cfc83554'/>
<id>urn:sha1:e8420087b0ae4a2d0611cd2f6413d150cfc83554</id>
<content type='text'>
In some cases replace if (a == null) a = malloc(x); else a =
realloc(a, x); with simple reallocf(a, x).  Per ANSI-C, this is
guaranteed to be the same thing.

I've been running these on my system here w/o ill effects for some
time.  However, the CTM-express is at part 6 of 34 for the CAM
changes, so I've not been able to do a build world with the CAM in the
tree with these changes.  Shouldn't impact anything, but...
</content>
</entry>
<entry>
<title>Don't assign the va_list variable 'ap' directly to the argtable because</title>
<updated>1998-05-08T05:10:32Z</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1998-05-08T05:10:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=77af5d1ac87e896a089d5cf759accd0c91fe8dc9'/>
<id>urn:sha1:77af5d1ac87e896a089d5cf759accd0c91fe8dc9</id>
<content type='text'>
va_list is not a pointer on alpha. Instead, use the va_arg() macro
to return the address that is stored in the argtable.
</content>
</entry>
<entry>
<title>Add FILE locking stubs for libc.</title>
<updated>1998-04-11T07:40:47Z</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1998-04-11T07:40:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=ec216c263498f3ab7c5554f5c5571125b57024b8'/>
<id>urn:sha1:ec216c263498f3ab7c5554f5c5571125b57024b8</id>
<content type='text'>
Change the FILE locking to support kernel threads when linked with
libpthread (which you haven't see yet). This requires that libc become
thread-safe and thread-aware, testing __isthreaded before attempting
to do lock/unlock calls. The impact on non-threaded programs is minor.
This change works with libc_r, so it's the best compromise.
</content>
</entry>
<entry>
<title>size_t -&gt; unsigned</title>
<updated>1998-01-04T22:28:47Z</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1998-01-04T22:28:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=b250f24856748de80dcf3759a770ff3092b392b1'/>
<id>urn:sha1:b250f24856748de80dcf3759a770ff3092b392b1</id>
<content type='text'>
in arguments length INT_MAX overflow check
Suggested-by: bde
</content>
</entry>
<entry>
<title>Add overflow checks: if output size becomes bigger than INT_MAX,</title>
<updated>1997-12-25T00:32:17Z</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1997-12-25T00:32:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=92e88f87b9fe071c4c02938f8e0c2dd12d073957'/>
<id>urn:sha1:92e88f87b9fe071c4c02938f8e0c2dd12d073957</id>
<content type='text'>
just return EOF
</content>
</entry>
<entry>
<title>Return back to BSD snprintf semantics which recent C9x standard adopts</title>
<updated>1997-12-24T23:02:47Z</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1997-12-24T23:02:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=6e690ad4ca3f240aa8deb1a18660c97c72e6d2c3'/>
<id>urn:sha1:6e690ad4ca3f240aa8deb1a18660c97c72e6d2c3</id>
<content type='text'>
instead of Singe Unix, thanx Bruce for explaining, I am not realize
standards war was there.

But now, fix n == 0 case to not return error and fix check for too
big n.

Things left to do: check for overflow in arguments.
</content>
</entry>
<entry>
<title>Fix snprintf(...%n...)</title>
<updated>1997-12-24T13:47:13Z</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1997-12-24T13:47:13Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=97adcd5ba18a0fd45661a89f452986401146eb93'/>
<id>urn:sha1:97adcd5ba18a0fd45661a89f452986401146eb93</id>
<content type='text'>
to pass not more than buffer size to %n agrument, old variant
always assume infinite buffer.
%n is for actually transmitted characters, not for planned ones.
</content>
</entry>
</feed>
