mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-19 09:01:18 +02:00
2022-12-08 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdcastmanager(1) that could cause a segfault when uploading a new item. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -62,7 +62,7 @@ size_t __RDFeed_Write_Callback(char *ptr,size_t size,size_t nmemb,
|
||||
{
|
||||
static QByteArray *buffer=(QByteArray *)userdata;
|
||||
|
||||
*buffer+=QByteArray(ptr,size*nmemb);
|
||||
buffer->append(QByteArray(ptr,size*nmemb));
|
||||
|
||||
return size*nmemb;
|
||||
}
|
||||
|
Reference in New Issue
Block a user