Fix 'metaphon' function to correctly calculate the length of the returned string

parent 7162b65c
......@@ -497,7 +497,7 @@ char *metaphon(UDF_INIT *initid, UDF_ARGS *args, char *result,
}
}
}
*length= (ulong) (result - org_result);
*length= (ulong) (max(0, result - org_result - 1));
return org_result;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment