Changes in / [70a76f3:3442788]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • message.c

    r2354e9a r97cdbaf5  
    881881      NULL
    882882    };
    883     char *out = NULL;
     883    char *out;
    884884    int rv;
    885885    int status;
     
    898898      }
    899899      owl_message_set_body(m, out);
    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);
     900      g_free(out);
     901    } else if(out) {
     902      g_free(out);
     903    }
    906904  }
    907905
Note: See TracChangeset for help on using the changeset viewer.