Skip to content

Commit

Permalink
assig reslt of realloc
Browse files Browse the repository at this point in the history
  • Loading branch information
jpffitch committed Dec 1, 2017
1 parent 176508f commit 4c89572
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Engine/csound_orc_semantics.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,9 @@ char* get_arg_type2(CSOUND* csound, TREE* tree, TYPE_TABLE* typeTable)
else {
char* rightArgType = get_arg_string_from_tree(csound, tree->right,
typeTable);
<<<<<<< HEAD


leftArgType =csound->ReAlloc(csound, leftArgType, strlen(leftArgType) + strlen(rightArgType) + 1);
=======
>>>>>>> a08b70fa0eb00f177c2afa705944abc2b4f7aa6b
char* argString = strcat(leftArgType, rightArgType);
char* argString = strcat(leftArgType, rightArgType);

OENTRIES* opentries = find_opcode2(csound, "##array_get");
char* outype = resolve_opcode_get_outarg(csound,
Expand Down

0 comments on commit 4c89572

Please sign in to comment.