Bug 656165 - g_free accepts NULL so we do not need NULL checking before invoking it. r=karlt

This commit is contained in:
Hiroyuki Ikezoe 2011-05-11 15:12:26 +02:00
Родитель 41700cc573
Коммит 0320523388
3 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -214,8 +214,7 @@ nsGConfService::GetAppForProtocol(const nsACString &aScheme, PRBool *aEnabled,
}
aHandler.Assign(command);
if (command)
g_free(command);
g_free(command);
if (err) {
g_error_free(err);

Просмотреть файл

@ -258,7 +258,6 @@ nsGnomeVFSService::ShowURIForInput(const nsACString &aUri)
if (gnome_vfs_url_show_with_env(spec, NULL) == GNOME_VFS_OK)
rv = NS_OK;
if (spec)
g_free(spec);
g_free(spec);
return rv;
}

Просмотреть файл

@ -1140,8 +1140,7 @@ nsDragService::TargetResetData(void)
{
mTargetDragDataReceived = PR_FALSE;
// make sure to free old data if we have to
if (mTargetDragData)
g_free(mTargetDragData);
g_free(mTargetDragData);
mTargetDragData = 0;
mTargetDragDataLen = 0;
}