mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-14 08:15:02 -05:00
Merge pull request #506 from chme/queue
Add missing transaction end in error case
This commit is contained in:
commit
8012be596e
24
src/db.c
24
src/db.c
@ -4624,30 +4624,6 @@ db_queue_get_pos(uint32_t item_id, char shuffle)
|
||||
#undef Q_TMPL_SHUFFLE
|
||||
}
|
||||
|
||||
int
|
||||
db_queue_get_pos_byfileid(uint32_t file_id, char shuffle)
|
||||
{
|
||||
#define Q_TMPL "SELECT pos FROM queue WHERE file_id = %d LIMIT 1;"
|
||||
#define Q_TMPL_SHUFFLE "SELECT shuffle_pos FROM queue WHERE file_id = %d LIMIT 1;"
|
||||
|
||||
char *query;
|
||||
int pos;
|
||||
|
||||
if (shuffle)
|
||||
query = sqlite3_mprintf(Q_TMPL_SHUFFLE, file_id);
|
||||
else
|
||||
query = sqlite3_mprintf(Q_TMPL, file_id);
|
||||
|
||||
pos = db_get_one_int(query);
|
||||
|
||||
sqlite3_free(query);
|
||||
|
||||
return pos;
|
||||
|
||||
#undef Q_TMPL
|
||||
#undef Q_TMPL_SHUFFLE
|
||||
}
|
||||
|
||||
static int
|
||||
queue_fetch_byitemid(uint32_t item_id, struct db_queue_item *queue_item, int with_metadata)
|
||||
{
|
||||
|
3
src/db.h
3
src/db.h
@ -815,9 +815,6 @@ db_queue_get_count();
|
||||
int
|
||||
db_queue_get_pos(uint32_t item_id, char shuffle);
|
||||
|
||||
int
|
||||
db_queue_get_pos_byfileid(uint32_t file_id, char shuffle);
|
||||
|
||||
/* Inotify */
|
||||
int
|
||||
db_watch_clear(void);
|
||||
|
@ -1703,7 +1703,10 @@ dacp_reply_playqueuecontents(struct httpd_request *hreq)
|
||||
{
|
||||
ret = playqueuecontents_add_queue_item(songlist, &queue_item, count, status.plid);
|
||||
if (ret < 0)
|
||||
goto error;
|
||||
{
|
||||
db_queue_enum_end(&qp);
|
||||
goto error;
|
||||
}
|
||||
|
||||
count++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user