mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-22 20:02:42 +00:00
Don't ignore return value of g_slist_append.
This commit is contained in:
parent
a269593afe
commit
1ec49a4a06
1 changed files with 1 additions and 2 deletions
|
@ -3060,8 +3060,7 @@ void RefreshModelSkin( GSList **pModels, entitymodel_t *model ){
|
|||
#endif
|
||||
|
||||
// and also keeping it so we have an actual count of empty models
|
||||
// jdolan: FIXME uhm, shouldn't we track the return value from this append?
|
||||
g_slist_append( *pModels, model );
|
||||
*pModels = g_slist_append( *pModels, model );
|
||||
return;
|
||||
}
|
||||
// do we have this model already?
|
||||
|
|
Loading…
Reference in a new issue