Changeset b9517cf for functions.c


Ignore:
Timestamp:
Jul 25, 2011, 1:35:30 AM (13 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.9
Children:
a74a044
Parents:
f271129
git-author:
David Benjamin <davidben@mit.edu> (07/25/11 01:24:06)
git-committer:
David Benjamin <davidben@mit.edu> (07/25/11 01:35:30)
Message:
Explicitly store whether an owl_message has a ZNotice_t

We should remove it altogether in perlmessages, but in the meantime, we
shouldn't be crashing on faked incoming zephyr messages. Also drop the
attempted fake ZNotice_t in owl_perlconfig_hashref2message. No one could
have relied on it safely today because any such message would crash on
delete.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    rf271129 rb9517cf  
    14231423    owl_fmtext_appendf_normal(&fm, "  Opcode    : %s\n", owl_message_get_opcode(m));
    14241424#ifdef HAVE_LIBZEPHYR
    1425     if (owl_message_is_direction_in(m)) {
     1425    n = owl_message_get_notice(m);
     1426    if (n != NULL) {
    14261427      char *tmpbuff, *tmpbuff2;
    14271428      int i, fields;
    1428 
    1429       n=owl_message_get_notice(m);
    14301429
    14311430      if (!owl_message_is_pseudo(m)) {
Note: See TracChangeset for help on using the changeset viewer.