- Timestamp:
- May 10, 2012, 1:18:33 AM (12 years ago)
- Branches:
- master, release-1.10, release-1.9
- Children:
- 7a51fb4, 06470d7, 70a76f3
- Parents:
- 3442788
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
message.c
r97cdbaf5 r2354e9a 881 881 NULL 882 882 }; 883 char *out ;883 char *out = NULL; 884 884 int rv; 885 885 int status; … … 898 898 } 899 899 owl_message_set_body(m, out); 900 g_free(out); 901 } else if(out) { 902 g_free(out); 903 } 900 } else { 901 /* Replace the opcode. Otherwise the UI and other bits of code think the 902 * message was encrypted. */ 903 owl_message_set_opcode(m, "failed-decrypt"); 904 } 905 g_free(out); 904 906 } 905 907
Note: See TracChangeset
for help on using the changeset viewer.