Fixed GetUrl.
authorkramm <kramm>
Wed, 31 Oct 2001 21:33:26 +0000 (21:33 +0000)
committerkramm <kramm>
Wed, 31 Oct 2001 21:33:26 +0000 (21:33 +0000)
lib/modules/swfaction.c

index 301c4c9..d96dcb9 100644 (file)
@@ -745,8 +745,8 @@ void action_GetUrl(char* url, char* label)
     int l2= strlen(label);
     char*ptr = malloc(l1+l2+2);
     strcpy(ptr, url);
-    strcat(&ptr[l2+1], label);
-    swf_AddActionTAG(ACTION_GETURL, ptr, strlen(ptr));
+    strcpy(&ptr[l1+1], label);
+    swf_AddActionTAG(ACTION_GETURL, ptr, l1+l2+2);
 }
 //TODO:
 void action_DefineFunction(U8*data, int len) {}