stored_playlist: unsigned index arguments
Pass index arguments as unsigned integers. They must not be negative, and even if some caller accidently passes -1, it won't pass the bound checks (since it's now 2**32-1).
This commit is contained in:
@@ -280,7 +280,7 @@ spl_move_index_internal(List *list, int src, int dest)
|
||||
}
|
||||
|
||||
enum playlist_result
|
||||
spl_move_index(const char *utf8path, int src, int dest)
|
||||
spl_move_index(const char *utf8path, unsigned src, unsigned dest)
|
||||
{
|
||||
List *list;
|
||||
enum playlist_result result;
|
||||
@@ -323,7 +323,7 @@ spl_clear(const char *utf8path)
|
||||
}
|
||||
|
||||
static int
|
||||
spl_remove_index_internal(List *list, int pos)
|
||||
spl_remove_index_internal(List *list, unsigned pos)
|
||||
{
|
||||
ListNode *node = spl_get_index(list, pos);
|
||||
if (!node)
|
||||
@@ -335,7 +335,7 @@ spl_remove_index_internal(List *list, int pos)
|
||||
}
|
||||
|
||||
enum playlist_result
|
||||
spl_remove_index(const char *utf8path, int pos)
|
||||
spl_remove_index(const char *utf8path, unsigned pos)
|
||||
{
|
||||
List *list;
|
||||
enum playlist_result result;
|
||||
@@ -409,7 +409,7 @@ spl_append_uri(const char *url, const char *utf8file)
|
||||
|
||||
song = song_remote_new(url);
|
||||
if (song) {
|
||||
int ret = spl_append_song(utf8file, song);
|
||||
enum playlist_result ret = spl_append_song(utf8file, song);
|
||||
song_free(song);
|
||||
return ret;
|
||||
}
|
||||
|
@@ -46,13 +46,13 @@ List *
|
||||
spl_load(const char *utf8path);
|
||||
|
||||
enum playlist_result
|
||||
spl_move_index(const char *utf8path, int src, int dest);
|
||||
spl_move_index(const char *utf8path, unsigned src, unsigned dest);
|
||||
|
||||
enum playlist_result
|
||||
spl_clear(const char *utf8path);
|
||||
|
||||
enum playlist_result
|
||||
spl_remove_index(const char *utf8path, int pos);
|
||||
spl_remove_index(const char *utf8path, unsigned pos);
|
||||
|
||||
enum playlist_result
|
||||
spl_append_song(const char *utf8path, struct song *song);
|
||||
|
Reference in New Issue
Block a user