Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
6d0ff11d
Commit
6d0ff11d
authored
May 30, 2009
by
JP Dinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A few sprintf()+n in text/strings.c
parent
745dbe97
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/text/strings.c
src/text/strings.c
+7
-7
No files found.
src/text/strings.c
View file @
6d0ff11d
...
@@ -792,14 +792,14 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
...
@@ -792,14 +792,14 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
if
(
p_item
)
if
(
p_item
)
{
{
mtime_t
i_duration
=
input_item_GetDuration
(
p_item
);
mtime_t
i_duration
=
input_item_GetDuration
(
p_item
);
s
printf
(
buf
,
"%02d:%02d:%02d"
,
s
nprintf
(
buf
,
10
,
"%02d:%02d:%02d"
,
(
int
)(
i_duration
/
(
3600000000
)),
(
int
)(
i_duration
/
(
3600000000
)),
(
int
)((
i_duration
/
(
60000000
))
%
60
),
(
int
)((
i_duration
/
(
60000000
))
%
60
),
(
int
)((
i_duration
/
1000000
)
%
60
)
);
(
int
)((
i_duration
/
1000000
)
%
60
)
);
}
}
else
else
{
{
s
printf
(
buf
,
b_empty_if_na
?
""
:
"--:--:--"
);
s
nprintf
(
buf
,
10
,
b_empty_if_na
?
""
:
"--:--:--"
);
}
}
INSERT_STRING_NO_FREE
(
buf
);
INSERT_STRING_NO_FREE
(
buf
);
break
;
break
;
...
@@ -826,14 +826,14 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
...
@@ -826,14 +826,14 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
{
{
mtime_t
i_duration
=
input_item_GetDuration
(
p_item
);
mtime_t
i_duration
=
input_item_GetDuration
(
p_item
);
int64_t
i_time
=
var_GetInteger
(
p_input
,
"time"
);
int64_t
i_time
=
var_GetInteger
(
p_input
,
"time"
);
s
printf
(
buf
,
"%02d:%02d:%02d"
,
s
nprintf
(
buf
,
10
,
"%02d:%02d:%02d"
,
(
int
)(
(
i_duration
-
i_time
)
/
3600000000
),
(
int
)(
(
i_duration
-
i_time
)
/
3600000000
),
(
int
)(
(
(
i_duration
-
i_time
)
/
60000000
)
%
60
),
(
int
)(
(
(
i_duration
-
i_time
)
/
60000000
)
%
60
),
(
int
)(
(
(
i_duration
-
i_time
)
/
1000000
)
%
60
)
);
(
int
)(
(
(
i_duration
-
i_time
)
/
1000000
)
%
60
)
);
}
}
else
else
{
{
s
printf
(
buf
,
b_empty_if_na
?
""
:
"--:--:--"
);
s
nprintf
(
buf
,
10
,
b_empty_if_na
?
""
:
"--:--:--"
);
}
}
INSERT_STRING_NO_FREE
(
buf
);
INSERT_STRING_NO_FREE
(
buf
);
break
;
break
;
...
@@ -862,7 +862,7 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
...
@@ -862,7 +862,7 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
}
}
else
else
{
{
s
printf
(
buf
,
b_empty_if_na
?
""
:
"--.-%%"
);
s
nprintf
(
buf
,
10
,
b_empty_if_na
?
""
:
"--.-%%"
);
}
}
INSERT_STRING_NO_FREE
(
buf
);
INSERT_STRING_NO_FREE
(
buf
);
break
;
break
;
...
@@ -894,14 +894,14 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
...
@@ -894,14 +894,14 @@ char *__str_format_meta( vlc_object_t *p_object, const char *string )
if
(
p_input
)
if
(
p_input
)
{
{
int64_t
i_time
=
var_GetInteger
(
p_input
,
"time"
);
int64_t
i_time
=
var_GetInteger
(
p_input
,
"time"
);
s
printf
(
buf
,
"%02d:%02d:%02d"
,
s
nprintf
(
buf
,
10
,
"%02d:%02d:%02d"
,
(
int
)(
i_time
/
(
3600000000
)
),
(
int
)(
i_time
/
(
3600000000
)
),
(
int
)(
(
i_time
/
(
60000000
)
)
%
60
),
(
int
)(
(
i_time
/
(
60000000
)
)
%
60
),
(
int
)(
(
i_time
/
1000000
)
%
60
)
);
(
int
)(
(
i_time
/
1000000
)
%
60
)
);
}
}
else
else
{
{
s
printf
(
buf
,
b_empty_if_na
?
""
:
"--:--:--"
);
s
nprintf
(
buf
,
10
,
b_empty_if_na
?
""
:
"--:--:--"
);
}
}
INSERT_STRING_NO_FREE
(
buf
);
INSERT_STRING_NO_FREE
(
buf
);
break
;
break
;
...
...
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