Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b27990c5
Commit
b27990c5
authored
Jul 11, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Store and parse 64-bits values in vlcrc
parent
cafd2e02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
src/config/file.c
src/config/file.c
+9
-8
No files found.
src/config/file.c
View file @
b27990c5
...
...
@@ -135,17 +135,18 @@ static FILE *config_OpenConfigFile( vlc_object_t *p_obj )
}
static
int
strtoi
(
const
char
*
str
)
static
int
64_t
strtoi
(
const
char
*
str
)
{
char
*
end
;
long
l
;
long
l
ong
l
;
errno
=
0
;
l
=
strtol
(
str
,
&
end
,
0
);
l
=
strtol
l
(
str
,
&
end
,
0
);
if
(
!
errno
)
{
if
((
l
>
INT_MAX
)
||
(
l
<
INT_MIN
))
if
((
l
>
INT64_C
(
0x7fffffffffffffff
))
||
(
l
<
INT64_C
(
-
0x8000000000000000
)))
errno
=
ERANGE
;
if
(
*
end
)
errno
=
EINVAL
;
...
...
@@ -270,12 +271,12 @@ int config_LoadConfigFile( vlc_object_t *p_this, const char *psz_module_name )
case
CONFIG_ITEM_BOOL
:
case
CONFIG_ITEM_INTEGER
:
{
long
l
=
strtoi
(
psz_option_value
);
int64_t
l
=
strtoi
(
psz_option_value
);
if
(
errno
)
msg_Warn
(
p_this
,
"Integer value (%s) for %s: %m"
,
psz_option_value
,
psz_option_name
);
else
p_item
->
saved
.
i
=
p_item
->
value
.
i
=
(
int
)
l
;
p_item
->
saved
.
i
=
p_item
->
value
.
i
=
l
;
break
;
}
...
...
@@ -614,7 +615,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
if
(
IsConfigIntegerType
(
p_item
->
i_type
))
{
int
val
=
b_retain
?
p_item
->
saved
.
i
:
p_item
->
value
.
i
;
int
64_t
val
=
b_retain
?
p_item
->
saved
.
i
:
p_item
->
value
.
i
;
if
(
p_item
->
i_type
==
CONFIG_ITEM_KEY
)
{
char
*
psz_key
=
ConfigKeyToString
(
val
);
...
...
@@ -629,7 +630,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
(
p_item
->
i_type
==
CONFIG_ITEM_BOOL
)
?
N_
(
"boolean"
)
:
N_
(
"integer"
),
val
==
p_item
->
orig
.
i
,
p_item
->
psz_name
,
"%
d"
,
val
);
p_item
->
psz_name
,
"%
"
PRId64
,
val
);
p_item
->
saved
.
i
=
val
;
}
else
...
...
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