diff options
| author | Jay Sorg <jay.sorg@gmail.com> | 2013-12-04 15:34:38 -0800 |
|---|---|---|
| committer | Jay Sorg <jay.sorg@gmail.com> | 2013-12-04 15:34:38 -0800 |
| commit | 50962fadcd7c36fac7c8d22dd3ff0e7247a844fe (patch) | |
| tree | 4f1c9388e36b30f5b92bd3273c85b50cd3f94017 | |
| parent | 97537587a822d66de4ea6dc554631ced53cf1b65 (diff) | |
| download | xrdp-proprietary-50962fadcd7c36fac7c8d22dd3ff0e7247a844fe.tar.gz xrdp-proprietary-50962fadcd7c36fac7c8d22dd3ff0e7247a844fe.zip | |
chansrv: fix some warning
| -rw-r--r-- | sesman/chansrv/fifo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sesman/chansrv/fifo.c b/sesman/chansrv/fifo.c index 630df3cd..b212736a 100644 --- a/sesman/chansrv/fifo.c +++ b/sesman/chansrv/fifo.c @@ -24,6 +24,7 @@ #include "fifo.h" #include "mlog.h" +#include "os_calls.h" /** * Initialize a FIFO that grows as required @@ -50,7 +51,7 @@ fifo_init(FIFO* fp, int num_entries) fp->rd_ptr = 0; fp->wr_ptr = 0; - fp->user_data = (long *) g_malloc(sizeof(long) * num_entries); + fp->user_data = (long *) g_malloc(sizeof(long) * num_entries, 1); if (fp->user_data) { @@ -94,6 +95,7 @@ fifo_deinit(FIFO* fp) fp->rd_ptr = 0; fp->wr_ptr = 0; fp->entries = 0; + return 0; } /** @@ -148,7 +150,7 @@ fifo_insert(FIFO* fp, void* data) if (next_val == fp->rd_ptr) { /* FIFO is full, expand it by 10 entries */ - lp = (long *) g_malloc(sizeof(long) * (fp->entries + 10)); + lp = (long *) g_malloc(sizeof(long) * (fp->entries + 10), 1); if (!lp) { log_debug_low("FIFO full; cannot expand, no memory"); @@ -233,8 +235,6 @@ fifo_remove(FIFO* fp) void* fifo_peek(FIFO* fp) { - long data; - log_debug_high("entered\n"); if (!fp) |
