Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
3ec93c14
Commit
3ec93c14
authored
Aug 20, 2009
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "update: rename the variables so that it matches their current purpose"
This reverts commit
ebfd9455
.
parent
db6fab48
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
12 deletions
+10
-12
src/misc/update.c
src/misc/update.c
+9
-11
src/misc/update.h
src/misc/update.h
+1
-1
No files found.
src/misc/update.c
View file @
3ec93c14
...
...
@@ -494,12 +494,10 @@ static void* update_DownloadReal( vlc_object_t *p_this );
* Download the file given in the update_t
*
* \param p_update structure
* \param destination to store the download file
* This can be an existing dir, a (non)existing target fullpath filename or
* NULL for the current working dir.
* \param dir to store the download file
* \return nothing
*/
void
update_Download
(
update_t
*
p_update
,
const
char
*
destination
)
void
update_Download
(
update_t
*
p_update
,
const
char
*
psz_destdir
)
{
assert
(
p_update
);
...
...
@@ -519,7 +517,7 @@ void update_Download( update_t *p_update, const char *destination )
p_udt
->
p_update
=
p_update
;
p_update
->
p_download
=
p_udt
;
p_udt
->
psz_dest
ination
=
destination
?
strdup
(
destination
)
:
NULL
;
p_udt
->
psz_dest
dir
=
psz_destdir
?
strdup
(
psz_destdir
)
:
NULL
;
vlc_thread_create
(
p_udt
,
"download update"
,
update_DownloadReal
,
VLC_THREAD_PRIORITY_LOW
);
...
...
@@ -546,7 +544,7 @@ static void* update_DownloadReal( vlc_object_t *p_this )
int
canc
;
update_t
*
p_update
=
p_udt
->
p_update
;
char
*
psz_dest
ination
=
p_udt
->
psz_destination
;
char
*
psz_dest
dir
=
p_udt
->
psz_destdir
;
msg_Dbg
(
p_udt
,
"Opening Stream '%s'"
,
p_update
->
release
.
psz_url
);
canc
=
vlc_savecancel
();
...
...
@@ -572,13 +570,13 @@ static void* update_DownloadReal( vlc_object_t *p_this )
}
psz_tmpdestfile
++
;
if
(
utf8_stat
(
psz_dest
ination
,
&
p_stat
)
==
0
&&
(
p_stat
.
st_mode
&
S_IFDIR
)
)
if
(
utf8_stat
(
psz_dest
dir
,
&
p_stat
)
==
0
&&
(
p_stat
.
st_mode
&
S_IFDIR
)
)
{
if
(
asprintf
(
&
psz_destfile
,
"%s%c%s"
,
psz_dest
ination
,
DIR_SEP_CHAR
,
psz_tmpdestfile
)
==
-
1
)
if
(
asprintf
(
&
psz_destfile
,
"%s%c%s"
,
psz_dest
dir
,
DIR_SEP_CHAR
,
psz_tmpdestfile
)
==
-
1
)
goto
end
;
}
else
if
(
psz_dest
ination
)
psz_destfile
=
strdup
(
psz_dest
ination
);
else
if
(
psz_dest
dir
)
psz_destfile
=
strdup
(
psz_dest
dir
);
else
psz_destfile
=
strdup
(
psz_tmpdestfile
);
...
...
@@ -741,7 +739,7 @@ end:
stream_Delete
(
p_stream
);
if
(
p_file
)
fclose
(
p_file
);
free
(
psz_dest
ination
);
free
(
psz_dest
dir
);
free
(
psz_destfile
);
free
(
p_buffer
);
free
(
psz_size
);
...
...
src/misc/update.h
View file @
3ec93c14
...
...
@@ -151,7 +151,7 @@ typedef struct
{
VLC_COMMON_MEMBERS
update_t
*
p_update
;
char
*
psz_dest
ination
;
char
*
psz_dest
dir
;
}
update_download_thread_t
;
/**
...
...
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