Changeset e488ec5 for functions.c


Ignore:
Timestamp:
Jul 27, 2010, 10:50:36 PM (14 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
35a30f9
Parents:
f93cc34 (diff), 26ad412 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merge branch 'security'
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    rd296c9a re488ec5  
    11771177    return;
    11781178
    1179   file = fopen(owl_global_get_debug_file(&g), "a");
     1179  file = owl_global_get_debug_file_handle(&g);
    11801180  if (!file) /* XXX should report this */
    11811181    return;
     
    11871187  vfprintf(file, fmt, ap);
    11881188  putc('\n', file);
    1189   fclose(file);
     1189  fflush(file);
    11901190
    11911191  va_end(ap);
Note: See TracChangeset for help on using the changeset viewer.