Changeset 55b2de8 for functions.c
- Timestamp:
- May 12, 2011, 4:39:26 PM (14 years ago)
- Children:
- 7fd0bf7
- Parents:
- 13ee8f2
- git-author:
- David Benjamin <davidben@mit.edu> (05/07/11 15:12:09)
- git-committer:
- David Benjamin <davidben@mit.edu> (05/12/11 16:39:26)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r7b4f3be r55b2de8 32 32 char *rv; 33 33 rv=owl_function_command(cmdbuff); 34 if (rv)g_free(rv);34 g_free(rv); 35 35 } 36 36 … … 453 453 454 454 if (rv || status) { 455 if(cryptmsg)g_free(cryptmsg);455 g_free(cryptmsg); 456 456 g_free(old_msg); 457 457 owl_function_error("Error in zcrypt, possibly no key found. Message not sent."); … … 991 991 /* execute the commands in shutdown */ 992 992 ret = owl_perlconfig_execute("BarnOwl::Hooks::_shutdown();"); 993 if (ret)g_free(ret);993 g_free(ret); 994 994 995 995 /* signal our child process, if any */ … … 2358 2358 done: 2359 2359 g_free(class); 2360 if (instance) { 2361 g_free(instance); 2362 } 2360 g_free(instance); 2363 2361 return(filtname); 2364 2362 }
Note: See TracChangeset
for help on using the changeset viewer.