Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7290a344
Commit
7290a344
authored
Feb 18, 2003
by
Andrew Choi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
unexmacosx.c (copy_data_segment): Also copy __cfstring section.
parent
6c019d3b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/unexmacosx.c
src/unexmacosx.c
+2
-1
No files found.
src/ChangeLog
View file @
7290a344
2003-02-18 Andrew Choi <akochoi@shaw.ca>
* unexmacosx.c (copy_data_segment): Also copy __cfstring section.
2003-02-18 Andreas Schwab <schwab@suse.de>
* window.c (window_scroll_pixel_based): Move outside a
...
...
src/unexmacosx.c
View file @
7290a344
...
...
@@ -638,7 +638,8 @@ copy_data_segment (struct load_command *lc)
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment