s3-talloc Change TALLOC_ARRAY() to talloc_array()
[samba.git] / source3 / libsmb / libsmb_path.c
index 64a956d9ee4ee25e2dbb8a6dd984dbf61a0a024a..1dcf2dd51672cd9c9b15f78938bf37a5b929696b 100644 (file)
@@ -88,7 +88,7 @@ urldecode_talloc(TALLOC_CTX *ctx, char **pp_dest, const char *src)
                newlen++;
        }
 
-       dest = TALLOC_ARRAY(ctx, char, newlen);
+       dest = talloc_array(ctx, char, newlen);
        if (!dest) {
                return err_count;
        }