Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
51894725
Commit
51894725
authored
Mar 27, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag_pool: use size_t for string length
parent
8fa44d53
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
tag_pool.c
src/tag_pool.c
+2
-2
tag_pool.h
src/tag_pool.h
+2
-2
No files found.
src/tag_pool.c
View file @
51894725
...
...
@@ -93,8 +93,8 @@ void tag_pool_deinit(void)
tag_pool_lock
=
NULL
;
}
struct
tag_item
*
tag_pool_get_item
(
enum
tag_type
type
,
const
char
*
value
,
in
t
length
)
struct
tag_item
*
tag_pool_get_item
(
enum
tag_type
type
,
const
char
*
value
,
size_
t
length
)
{
struct
slot
**
slot_p
,
*
slot
;
...
...
src/tag_pool.h
View file @
51894725
...
...
@@ -32,8 +32,8 @@ void tag_pool_init(void);
void
tag_pool_deinit
(
void
);
struct
tag_item
*
tag_pool_get_item
(
enum
tag_type
type
,
const
char
*
value
,
in
t
length
);
struct
tag_item
*
tag_pool_get_item
(
enum
tag_type
type
,
const
char
*
value
,
size_
t
length
);
struct
tag_item
*
tag_pool_dup_item
(
struct
tag_item
*
item
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment