Yikes! sftp.c wasn't using the misc.h wrappered malloc functions,

meaning that PSFTP couldn't meaningfully be debugged using
Minefield. That's what I get for developing it under Unix and
forgetting to port it properly :-/

[originally from svn r1383]
This commit is contained in:
Simon Tatham 2001-11-14 12:58:42 +00:00
Родитель 89b429e9d9
Коммит f176cbe70f
1 изменённых файлов: 1 добавлений и 4 удалений

5
sftp.c
Просмотреть файл

@ -7,13 +7,10 @@
#include <string.h>
#include <assert.h>
#include "misc.h"
#include "int64.h"
#include "sftp.h"
#define smalloc malloc
#define srealloc realloc
#define sfree free
#define GET_32BIT(cp) \
(((unsigned long)(unsigned char)(cp)[0] << 24) | \
((unsigned long)(unsigned char)(cp)[1] << 16) | \