Skip to content

Commit

Permalink
Use correct system function to free memory
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed Jun 6, 2005
1 parent a17766f commit b2436c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/gem/SDL_gemvideo.c
Expand Up @@ -481,12 +481,12 @@ static void GEM_FreeBuffers(_THIS)
{
/* Release buffer */
if ( GEM_buffer2 ) {
free( GEM_buffer2 );
Mfree( GEM_buffer2 );
GEM_buffer2=NULL;
}

if ( GEM_buffer1 ) {
free( GEM_buffer1 );
Mfree( GEM_buffer1 );
GEM_buffer1=NULL;
}
}
Expand Down

0 comments on commit b2436c3

Please sign in to comment.