Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: third_party/talloc/README.chromium

Issue 10821103: Make 'License' field in third-party metadata required (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 Name: talloc 1 Name: talloc
2 URL: http://talloc.samba.org/talloc/doc/html/index.html 2 URL: http://talloc.samba.org/talloc/doc/html/index.html
3 Version: 2.0.1 3 Version: 2.0.1
4 License: GPL v3
Nico 2012/07/31 14:30:39 LGPL v3, according to talloc.h
Steve Block 2012/07/31 15:18:14 Oops, typo. Fixed.
5 Security Critical: yes
4 6
5 The talloc library is only being used by a portion of the Mesa 7 The talloc library is only being used by a portion of the Mesa
6 software renderer, in ../mesa/MesaLib, and is only linked in to the 8 software renderer, in ../mesa/MesaLib, and is only linked in to the
7 OSMesa shared library. 9 OSMesa shared library.
8 10
9 This is version 2.0.1 of talloc, with the following modifications (see 11 This is version 2.0.1 of talloc, with the following modifications (see
10 chromium.patch): 12 chromium.patch):
11 13
12 - #include "replace.h" was commented out in talloc.c. 14 - #include "replace.h" was commented out in talloc.c.
13 - "bool malloced" was changed to "int malloced" in talloc.c. 15 - "bool malloced" was changed to "int malloced" in talloc.c.
14 - #include string.h, and conditional #include of stdint.h, were added 16 - #include string.h, and conditional #include of stdint.h, were added
15 to talloc.h. 17 to talloc.h.
16 - Uses of the "inline" keyword were made conditional and disabled on 18 - Uses of the "inline" keyword were made conditional and disabled on
17 Windows. 19 Windows.
18 - A "min_size" inline function was used in place of the MIN macro. 20 - A "min_size" inline function was used in place of the MIN macro.
19 - An implementation of strnlen was provided for platforms not 21 - An implementation of strnlen was provided for platforms not
20 supporting it (in particular, Mac OS X). 22 supporting it (in particular, Mac OS X).
21 - A use of ssize_t was changed to size_t on Windows. 23 - A use of ssize_t was changed to size_t on Windows.
22 - a call to vsnprintf() querying the required buffer size was changed to use 24 - a call to vsnprintf() querying the required buffer size was changed to use
23 ptr NULL size 0 in order to satisfy MSVC 25 ptr NULL size 0 in order to satisfy MSVC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698