Changeset 27f6487
- Timestamp:
- Aug 22, 2009, 12:47:44 AM (15 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- f4d4a00
- Parents:
- 0e5afa2
- git-author:
- Anders Kaseorg <andersk@mit.edu> (08/21/09 23:19:56)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (08/22/09 00:47:44)
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r9e5c9f3 r27f6487 1923 1923 newbuff=owl_strdup(""); 1924 1924 while (myargc) { 1925 newbuff= realloc(newbuff, strlen(newbuff)+strlen(myargv[0])+5);1925 newbuff=owl_realloc(newbuff, strlen(newbuff)+strlen(myargv[0])+5); 1926 1926 strcat(newbuff, myargv[0]); 1927 1927 strcat(newbuff, " "); -
editwin.c
r5ebc202 r27f6487 116 116 oe_set_mark(e, -1); 117 117 if (e->killbuf != NULL) 118 free(e->killbuf);118 owl_free(e->killbuf); 119 119 e->killbuf = NULL; 120 120 e->goal_column = -1; -
filterelement.c
r4542047 r27f6487 217 217 fe->field=owl_strdup(field); 218 218 if(owl_regex_create(&(fe->re), re)) { 219 free(fe->field);219 owl_free(fe->field); 220 220 fe->field = NULL; 221 221 return (-1); -
functions.c
r0e5afa2 r27f6487 887 887 path = owl_util_makepath(file); 888 888 ret=owl_zephyr_loadsubs(path, 1); 889 free(path);889 owl_free(path); 890 890 } 891 891 … … 2847 2847 2848 2848 /* first, create the filter */ 2849 f= malloc(sizeof(owl_filter));2849 f=owl_malloc(sizeof(owl_filter)); 2850 2850 2851 2851 owl_function_debugmsg("About to filter %s", filter); -
global.c
r0e5afa2 r27f6487 365 365 */ 366 366 void owl_global_set_confdir(owl_global *g, const char *cd) { 367 free(g->confdir);367 owl_free(g->confdir); 368 368 g->confdir = owl_strdup(cd); 369 free(g->startupfile);369 owl_free(g->startupfile); 370 370 g->startupfile = owl_sprintf("%s/startup", cd); 371 371 } -
message.c
r9e5c9f3 r27f6487 604 604 end += strlen(user) + 1; 605 605 } 606 free(shortuser);606 owl_free(shortuser); 607 607 user = strtok(NULL, " "); 608 608 } -
select.c
r6249e137 r27f6487 170 170 } 171 171 172 d = malloc(sizeof(owl_dispatch));172 d = owl_malloc(sizeof(owl_dispatch)); 173 173 d->fd = fd; 174 174 d->cfunc = owl_perlconfig_dispatch; -
zephyr.c
rc08c70a r27f6487 751 751 owl_function_makemsg("Message sent to %s on -c %s -i %s\n", tmp, retnotice->z_class, retnotice->z_class_inst); 752 752 } 753 free(tmp);753 owl_free(tmp); 754 754 } else { 755 755 /* class / instance message */
Note: See TracChangeset
for help on using the changeset viewer.