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
95d8b1b8
Commit
95d8b1b8
authored
Jul 08, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fingerprinter: remove useless checks
parent
acf5a05a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
modules/misc/fingerprinter.c
modules/misc/fingerprinter.c
+2
-4
No files found.
modules/misc/fingerprinter.c
View file @
95d8b1b8
...
...
@@ -343,8 +343,7 @@ static void cancelRun( void * p_arg )
fingerprinter_sys_t
*
p_sys
=
(
fingerprinter_sys_t
*
)
p_arg
;
if
(
vlc_array_count
(
p_sys
->
processing
.
queue
)
)
vlc_array_clear
(
p_sys
->
processing
.
queue
);
if
(
p_sys
->
psz_uri
)
free
(
p_sys
->
psz_uri
);
free
(
p_sys
->
psz_uri
);
}
static
void
clearPrint
(
void
*
p_arg
)
...
...
@@ -354,8 +353,7 @@ static void clearPrint( void * p_arg )
free_acoustid_result_t
(
&
acoustid_print
->
results
.
p_results
[
j
]
);
if
(
acoustid_print
->
results
.
count
)
free
(
acoustid_print
->
results
.
p_results
);
if
(
acoustid_print
->
psz_fingerprint
)
free
(
acoustid_print
->
psz_fingerprint
);
free
(
acoustid_print
->
psz_fingerprint
);
}
static
void
Run
(
fingerprinter_thread_t
*
p_fingerprinter
)
...
...
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