# HG changeset patch # User Andrew Choi # Date 1045583880 0 # Node ID 10764ce8e0772722da7ddc803eba210b79716ecb # Parent 5878a10628e35011d720ddcb1aa65cab9edbc242 unexmacosx.c (copy_data_segment): Also copy __cfstring section. diff -r 5878a10628e3 -r 10764ce8e077 src/ChangeLog --- a/src/ChangeLog Tue Feb 18 15:48:21 2003 +0000 +++ b/src/ChangeLog Tue Feb 18 15:58:00 2003 +0000 @@ -1,3 +1,7 @@ +2003-02-18 Andrew Choi + + * unexmacosx.c (copy_data_segment): Also copy __cfstring section. + 2003-02-18 Andreas Schwab * window.c (window_scroll_pixel_based): Move outside a diff -r 5878a10628e3 -r 10764ce8e077 src/unexmacosx.c --- a/src/unexmacosx.c Tue Feb 18 15:48:21 2003 +0000 +++ b/src/unexmacosx.c Tue Feb 18 15:58:00 2003 +0000 @@ -638,7 +638,8 @@ else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0 || strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0 || strncmp (sectp->sectname, "__dyld", 16) == 0 - || strncmp (sectp->sectname, "__const", 16) == 0) + || strncmp (sectp->sectname, "__const", 16) == 0 + || strncmp (sectp->sectname, "__cfstring", 16) == 0) { if (!unexec_copy (sectp->offset, old_file_offset, sectp->size)) unexec_error ("cannot copy section %s", sectp->sectname);