Release 3.1.1

This commit is contained in:
pancake 2018-12-03 03:31:57 +01:00
parent a1bc65c3db
commit b143e1b1b5
3 changed files with 7 additions and 7 deletions

8
configure vendored
View File

@ -119,12 +119,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s} : ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444} : ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c} : ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='radare2' ; VERSION='3.1.0' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ; PKGNAME='radare2' ; VERSION='3.1.1' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
} }
show_usage() { show_usage() {
cat <<EOF2 cat <<EOF2
'configure' configures radare2-3.1.0 to adapt to many kinds of systems. 'configure' configures radare2-3.1.1 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]... Usage: ./configure [OPTION]... [VAR=VALUE]...
@ -209,7 +209,7 @@ take_environ() {
} }
show_version() { show_version() {
echo "radare2-3.1.0 configuration script done with acr v1.7.0. echo "radare2-3.1.1 configuration script done with acr v1.7.0.
The 'Free Software Foundation' message is only for autodetection. The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>." Originally written by pancake <nopcode.org>."
exit 0 exit 0
@ -233,7 +233,7 @@ case $flag in
show_version ; ;; show_version ; ;;
-r|--r|--report) -r|--r|--report)
echo "PKGNAME: radare2" echo "PKGNAME: radare2"
echo "VERSION: 3.1.0" echo "VERSION: 3.1.1"
echo "LANGS: c" echo "LANGS: c"
echo "REQUIRED: libdl" echo "REQUIRED: libdl"
echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv" echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv"

View File

@ -1,5 +1,5 @@
PKGNAME radare2 PKGNAME radare2
VERSION 3.1.0 VERSION 3.1.1
CONTACT pancake ; pancake@nopcode.org CONTACT pancake ; pancake@nopcode.org
LANG_C! LANG_C!

View File

@ -32,8 +32,8 @@ static char *r_buf_read_string (RBuffer *buf, ut64 addr, int len) {
ut8 *data = malloc (len); ut8 *data = malloc (len);
if (data) { if (data) {
r_buf_read_at (buf, addr, data, len); r_buf_read_at (buf, addr, data, len);
data[len-1] = 0; data[len - 1] = 0;
return data; return (char *)data;
} }
return NULL; return NULL;
} }