mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Merging commits.
This commit is contained in:
parent
c49c7e0f3e
commit
92f6aa84e0
1 changed files with 2 additions and 2 deletions
|
@ -535,7 +535,7 @@ void ClearGSList( GSList* lst ){
|
|||
GSList *p = lst;
|
||||
while ( p )
|
||||
{
|
||||
free( p->data );
|
||||
g_free( p->data );
|
||||
p = g_slist_remove( p, p->data );
|
||||
}
|
||||
}
|
||||
|
@ -594,7 +594,7 @@ void FillTextureList( GSList** pArray )
|
|||
texdirs = g_slist_prepend( texdirs, g_strdup( shaderfile ) );
|
||||
}
|
||||
|
||||
g_free( l_shaderfiles->data );
|
||||
free( l_shaderfiles->data );
|
||||
l_shaderfiles = g_slist_remove( l_shaderfiles, l_shaderfiles->data );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue