Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
a3c34c16
Commit
a3c34c16
authored
Aug 29, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2572 from cubicdaiya/issues/fprintf_error_handlings
Fix error handlings for fprintf() and fputs() to file.
parents
9e4b0124
7d9b5132
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
5 deletions
+22
-5
src/dump.c
src/dump.c
+22
-5
No files found.
src/dump.c
View file @
a3c34c16
...
...
@@ -987,13 +987,30 @@ mrb_dump_irep_cfunc(mrb_state *mrb, mrb_irep *irep, int debug_info, FILE *fp, co
result
=
mrb_dump_irep
(
mrb
,
irep
,
debug_info
,
&
bin
,
&
bin_size
);
if
(
result
==
MRB_DUMP_OK
)
{
fprintf
(
fp
,
"#include <stdint.h>
\n
"
);
/* for uint8_t under at least Darwin */
fprintf
(
fp
,
"const uint8_t %s[] = {"
,
initname
);
if
(
fprintf
(
fp
,
"#include <stdint.h>
\n
"
)
<
0
)
{
/* for uint8_t under at least Darwin */
mrb_free
(
mrb
,
bin
);
return
MRB_DUMP_WRITE_FAULT
;
}
if
(
fprintf
(
fp
,
"const uint8_t %s[] = {"
,
initname
)
<
0
)
{
mrb_free
(
mrb
,
bin
);
return
MRB_DUMP_WRITE_FAULT
;
}
while
(
bin_idx
<
bin_size
)
{
if
(
bin_idx
%
16
==
0
)
fputs
(
"
\n
"
,
fp
);
fprintf
(
fp
,
"0x%02x,"
,
bin
[
bin_idx
++
]);
if
(
bin_idx
%
16
==
0
)
{
if
(
fputs
(
"
\n
"
,
fp
)
==
EOF
)
{
mrb_free
(
mrb
,
bin
);
return
MRB_DUMP_WRITE_FAULT
;
}
}
if
(
fprintf
(
fp
,
"0x%02x,"
,
bin
[
bin_idx
++
])
<
0
)
{
mrb_free
(
mrb
,
bin
);
return
MRB_DUMP_WRITE_FAULT
;
}
}
if
(
fputs
(
"
\n
};
\n
"
,
fp
)
==
EOF
)
{
mrb_free
(
mrb
,
bin
);
return
MRB_DUMP_WRITE_FAULT
;
}
fputs
(
"
\n
};
\n
"
,
fp
);
}
mrb_free
(
mrb
,
bin
);
...
...
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