Skip to content

Commit

Permalink
Release 4.4.0 - Codename: pangolin
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Apr 14, 2020
1 parent 8398d44 commit 9ea0b7c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions configure
Expand Up @@ -123,12 +123,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='radare2' ; VERSION='4.4.0-git' ; VERSION_MAJOR=4; VERSION_MINOR=4; VERSION_PATCH=0; VERSION_NUMBER=40400; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
PKGNAME='radare2' ; VERSION='4.4.0' ; VERSION_MAJOR=4; VERSION_MINOR=4; VERSION_PATCH=0; VERSION_NUMBER=40400; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
}

show_usage() {
cat <<EOF2
'configure' configures radare2-4.4.0-git to adapt to many kinds of systems.
'configure' configures radare2-4.4.0 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -216,7 +216,7 @@ take_environ() {
}

show_version() {
echo "radare2-4.4.0-git configuration script done with acr v1.8.1.
echo "radare2-4.4.0 configuration script done with acr v1.8.1.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
Expand All @@ -240,7 +240,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: radare2"
echo "VERSION: 4.4.0-git"
echo "VERSION: 4.4.0"
echo "LANGS: c"
echo "REQUIRED: libdl"
echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv>=1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion configure.acr
@@ -1,5 +1,5 @@
PKGNAME radare2
VERSION 4.4.0-git
VERSION 4.4.0
CONTACT pancake ; pancake@nopcode.org

LANG_C!
Expand Down
4 changes: 3 additions & 1 deletion libr/anal/fcn.c
Expand Up @@ -523,7 +523,9 @@ static int fcn_recurse(RAnal *anal, RAnalFunction *fcn, ut64 addr, ut64 len, int
}
}
if ((maxlen - (addrbytes * idx)) > MAX_SCAN_SIZE) {
eprintf ("Warning: Skipping large memory region.\n");
if (anal->verbose) {
eprintf ("Warning: Skipping large memory region.\n");
}
maxlen = 0;
}

Expand Down
2 changes: 1 addition & 1 deletion libr/util/file.c
Expand Up @@ -695,7 +695,7 @@ R_API bool r_file_hexdump(const char *file, const ut8 *buf, int len, int append)
}

R_API bool r_file_touch(const char *file) {
return r_file_dump(file, NULL, 0, true);
return r_file_dump (file, NULL, 0, true);
}

R_API bool r_file_dump(const char *file, const ut8 *buf, int len, bool append) {
Expand Down

0 comments on commit 9ea0b7c

Please sign in to comment.