1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-09 03:41:41 +03:00

Fixed bi_export, change to makefile

git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@215 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
cameronrich 2011-07-29 08:54:48 +00:00
parent 9c517f6351
commit 2e0da63a79
3 changed files with 5 additions and 4 deletions

View File

@ -86,7 +86,7 @@ else # Not Win32
CFLAGS += -I$(AXTLS_HOME)/config -I$(AXTLS_HOME)/ssl -I$(AXTLS_HOME)/crypto
LD=$(CC)
STRIP=strip
STRIP=$(CROSS)strip
# Solaris
ifdef CONFIG_PLATFORM_SOLARIS

View File

@ -723,10 +723,11 @@ void bi_export(BI_CTX *ctx, bigint *x, uint8_t *data, int size)
if (k < 0)
{
break;
goto buf_done;
}
}
}
buf_done:
bi_free(ctx, x);
}

File diff suppressed because one or more lines are too long