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
08819460
Commit
08819460
authored
Oct 31, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up (and use var_CreateGetString)
parent
77950f05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
11 deletions
+6
-11
modules/gui/ncurses.c
modules/gui/ncurses.c
+6
-11
No files found.
modules/gui/ncurses.c
View file @
08819460
...
...
@@ -305,28 +305,23 @@ static int Open( vlc_object_t *p_this )
p_sys
->
b_need_update
=
false
;
/* Initialize search chain */
p_sys
->
psz_search_chain
=
(
char
*
)
malloc
(
SEARCH_CHAIN_SIZE
+
1
);
p_sys
->
psz_search_chain
=
malloc
(
SEARCH_CHAIN_SIZE
+
1
);
p_sys
->
psz_old_search
=
NULL
;
p_sys
->
i_before_search
=
0
;
/* Initialize open chain */
p_sys
->
psz_open_chain
=
(
char
*
)
malloc
(
OPEN_CHAIN_SIZE
+
1
);
p_sys
->
psz_open_chain
=
malloc
(
OPEN_CHAIN_SIZE
+
1
);
/* Initialize browser options */
var_Create
(
p_intf
,
"browse-dir"
,
VLC_VAR_STRING
|
VLC_VAR_DOINHERIT
);
var_Get
(
p_intf
,
"browse-dir"
,
&
val
);
if
(
val
.
psz_string
&&
*
val
.
psz_string
)
{
p_sys
->
psz_current_dir
=
strdup
(
val
.
psz_string
);
}
char
*
psz_tmp
=
var_CreateGetString
(
p_intf
,
"browse-dir"
);
if
(
psz_tmp
&&
*
psz_tmp
)
p_sys
->
psz_current_dir
=
psz_tmp
;
else
{
p_sys
->
psz_current_dir
=
strdup
(
config_GetHomeDir
()
);
free
(
psz_tmp
);
}
free
(
val
.
psz_string
);
p_sys
->
i_dir_entries
=
0
;
p_sys
->
pp_dir_entries
=
NULL
;
p_sys
->
b_show_hidden_files
=
false
;
...
...
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