Changeset c809f5e for functions.c


Ignore:
Timestamp:
Mar 24, 2011, 4:06:10 PM (13 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.8, release-1.9
Children:
b13daa0
Parents:
f25df21
git-author:
David Benjamin <davidben@mit.edu> (03/08/11 15:16:37)
git-committer:
David Benjamin <davidben@mit.edu> (03/24/11 16:06:10)
Message:
Use owl_function_command_norv when we don't care about the result

Otherwise, we forget to g_free it.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    rf25df21 rc809f5e  
    26822682      g_string_append(buf, " *");
    26832683    }
    2684     owl_function_command(buf->str);
     2684    owl_function_command_norv(buf->str);
    26852685    g_string_free(buf, true);
    26862686  }
     
    33103310    if (s[0] == '\0' || s[0] == '#')
    33113311      continue;
    3312     owl_function_command(s);
     3312    owl_function_command_norv(s);
    33133313  }
    33143314
Note: See TracChangeset for help on using the changeset viewer.