I used free() for dealocation stuff, because Free() isn't any more in
windows. I have win nt and things seem to work fine. But let me make some
tests tomorrow. Ok?
The real problem for me are client_s and server_s witch could not work on my
win nt machine. I think that those examples are made to w
Hi,
The problem is in your Makefile (include order of ssl and crypto). Try a
Makefile something like:
CC=gcc
CFLAGS= -g -I../../include -I../../ssl -I../../crypto -Wall
LIBS= -L../.. -lssl -lcrypto
EXAMPLES=cli
all: $(EXAMPLES)
cli: cli.o
$(CC) cli.o -o cli $(LIBS)
clean:
rm -f $(EXAMPLES
No, the space is allocated by X509_NAME_oneline(). In the demo source,
it's deallocated by Free() (with a capital F), but this function is not
available in Win32. Using free() (lowercase F) causes a GPF. My doubt is,
what should I use?
Juan
lucian wrote:
> Hi Juan!
> I spretty simple: with free