do error checking instead of segfaulting

Original commit message from CVS:
do error checking instead of segfaulting
This commit is contained in:
Thomas Vander Stichele 2004-04-16 10:17:55 +00:00
parent 82d33969ed
commit 7ad9aa8526
3 changed files with 17 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
* testsuite/refcounting/mem.c: (vmsize):
do error checking
2004-04-16 Johan Dahlin <johan@gnome.org>
* docs/gst/gstreamer-sections.txt: Add gst_pad_call_chain_function

View file

@ -13,7 +13,13 @@ vmsize ()
pid = getpid ();
snprintf (filename, 17, "/proc/%d/stat", pid);
fd = open (filename, O_RDONLY);
if (fd == -1) {
fprintf (stderr, "warning: could not open %s\n", filename);
return -1;
}
size = read (fd, buf, 240);
if (size == -1)
return -1;
ptr = buf;
for (i = 0; i < 22; i++)
ptr = (char *) strchr (ptr, ' ') + 1;

View file

@ -13,7 +13,13 @@ vmsize ()
pid = getpid ();
snprintf (filename, 17, "/proc/%d/stat", pid);
fd = open (filename, O_RDONLY);
if (fd == -1) {
fprintf (stderr, "warning: could not open %s\n", filename);
return -1;
}
size = read (fd, buf, 240);
if (size == -1)
return -1;
ptr = buf;
for (i = 0; i < 22; i++)
ptr = (char *) strchr (ptr, ' ') + 1;