comparison src/protocols/msn/command.c @ 9193:502707ca1836

[gaim-migrate @ 9988] Patch by Felipe Contreras to add MSN file transfer and buddy icons. Please test and report any bugs! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 06 Jun 2004 02:39:08 +0000
parents a7affa2e2986
children ab6636c5a136
comparison
equal deleted inserted replaced
9192:5655dcd94d0f 9193:502707ca1836
80 if (cmd->ref_count > 0) 80 if (cmd->ref_count > 0)
81 { 81 {
82 msn_command_unref(cmd); 82 msn_command_unref(cmd);
83 return; 83 return;
84 } 84 }
85 85
86 if (cmd->payload != NULL)
87 g_free(cmd->payload);
88
86 g_free(cmd->command); 89 g_free(cmd->command);
87 g_strfreev(cmd->params); 90 g_strfreev(cmd->params);
88 g_free(cmd); 91 g_free(cmd);
89 } 92 }
90 93