Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
567cf942
Commit
567cf942
authored
Dec 03, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Buffer was too small.
parent
271fcd86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/misc/objects.c
src/misc/objects.c
+3
-3
No files found.
src/misc/objects.c
View file @
567cf942
...
...
@@ -928,7 +928,7 @@ static void SetAttachment( vlc_object_t *p_this, vlc_bool_t b_attached )
static
void
PrintObject
(
vlc_object_t
*
p_this
,
const
char
*
psz_prefix
)
{
char
psz_children
[
20
],
psz_refcount
[
20
],
psz_thread
[
2
0
],
psz_name
[
50
];
char
psz_children
[
20
],
psz_refcount
[
20
],
psz_thread
[
3
0
],
psz_name
[
50
];
psz_name
[
0
]
=
'\0'
;
if
(
p_this
->
psz_object_name
)
...
...
@@ -963,8 +963,8 @@ static void PrintObject( vlc_object_t *p_this, const char *psz_prefix )
psz_thread
[
0
]
=
'\0'
;
if
(
p_this
->
b_thread
)
{
snprintf
(
psz_thread
,
2
0
,
" (thread %d)"
,
(
int
)
p_this
->
thread_id
);
psz_thread
[
1
9
]
=
'\0'
;
snprintf
(
psz_thread
,
3
0
,
" (thread %d)"
,
(
int
)
p_this
->
thread_id
);
psz_thread
[
2
9
]
=
'\0'
;
}
printf
(
" %so %.8i %s%s%s%s%s
\n
"
,
psz_prefix
,
...
...
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