Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
44d0f3cf
Commit
44d0f3cf
authored
Dec 29, 2013
by
Paul Sokolovsky
Browse files
Handle return value of read() call.
parent
de690d12
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/lexerunix.c
View file @
44d0f3cf
...
...
@@ -48,8 +48,13 @@ mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
uint
size
=
lseek
(
fd
,
0
,
SEEK_END
);
lseek
(
fd
,
0
,
SEEK_SET
);
char
*
data
=
m_new
(
char
,
size
);
read
(
fd
,
data
,
size
);
int
read_size
=
read
(
fd
,
data
,
size
);
close
(
fd
);
if
(
read_size
!=
size
)
{
printf
(
"error reading file %s
\n
"
,
filename
);
m_free
(
data
);
return
NULL
;
}
return
mp_lexer_new_from_str_len
(
filename
,
data
,
size
,
true
);
}
Write
Preview
Supports
Markdown
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