diff options
author | kent@mysql.com/kent-amd64.(none) <> | 2006-11-27 18:29:50 +0100 |
---|---|---|
committer | kent@mysql.com/kent-amd64.(none) <> | 2006-11-27 18:29:50 +0100 |
commit | 6c85ba399d205ecbd87b7b512f9892bae28c4275 (patch) | |
tree | 6e69443c2ba64be6a55243ae050033ea5a4669c1 /bdb | |
parent | 34cedd8d77da1b61a69528a3cece8cf9a19f1955 (diff) | |
download | mariadb-git-6c85ba399d205ecbd87b7b512f9892bae28c4275.tar.gz |
gen_rec.awk:
Fix undefined behaviour.
Many files:
Reenabled build outside ource tree
Diffstat (limited to 'bdb')
-rw-r--r-- | bdb/dist/gen_rec.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bdb/dist/gen_rec.awk b/bdb/dist/gen_rec.awk index 75f2e86ca9e..e1b75699027 100644 --- a/bdb/dist/gen_rec.awk +++ b/bdb/dist/gen_rec.awk @@ -180,7 +180,7 @@ BEGIN { t = types[i]; if (modes[i] == "POINTER") { ndx = index(t, "*"); - t = substr(types[i], 0, ndx - 2); + t = substr(types[i], 1, ndx - 2); } printf("\t%s\t%s;\n", t, vars[i]) >> HFILE } |