(closes issue #10692)

Reported by: snuffy
Patches:
      minivm.diff uploaded by snuffy (license 35)
Instead of using err (which is not available under Solaris) use fdprintf with stderr.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82231 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp 2007-09-11 13:10:04 +00:00
parent c121ed6bec
commit a7d3a24fa5
4 changed files with 6 additions and 10 deletions

View File

@ -38,7 +38,6 @@
#include <unistd.h>
#include <fcntl.h>
#include <getopt.h>
#include <err.h>
#include "mm.h"
@ -106,20 +105,20 @@ main(int argc, char **argv)
i = mm_parse_file(ctx, argv[0], MM_PARSE_LOOSE, 0);
} else {
if (stat(argv[0], &st) == -1) {
err(1, "stat");
fprintf(stderr, "INFO: stat");
}
if ((fd = open(argv[0], O_RDONLY)) == -1) {
err(1, "open");
fdprintf(stderr, "INFO: open");
}
buf = (char *)malloc(st.st_size);
if (buf == NULL) {
err(1, "malloc");
fdprintf(stderr, "INFO: malloc");
}
if (read(fd, buf, st.st_size) != st.st_size) {
err(1, "read");
fdprintf(stderr, "INFO: read");
}
close(fd);

View File

@ -37,7 +37,6 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <err.h>
#include <assert.h>
#include "mm_internal.h"
@ -55,11 +54,11 @@ MM_malloc(size_t size, char *filename, int line)
pointer = malloc(size);
if (pointer == NULL)
err(1, "malloc");
fdprintf(stderr, "INFO: malloc");
chunk = (struct MM_mem_chunk *)malloc(sizeof(struct MM_mem_chunk));
if (chunk == NULL)
err(1, "malloc");
fdprintf(stderr, "INFO: malloc");
chunk->address = pointer;
chunk->size = size;

View File

@ -40,7 +40,6 @@
#include <unistd.h>
#include <fcntl.h>
#include <getopt.h>
#include <err.h>
#include "mm.h"

View File

@ -40,7 +40,6 @@
#include <unistd.h>
#include <fcntl.h>
#include <getopt.h>
#include <err.h>
#include "mm.h"