Browse Source

Review OpenURL()

pull/687/head
Ray 6 years ago
parent
commit
30a1edd40e
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      src/core.c

+ 4
- 6
src/core.c View File

@ -1822,19 +1822,17 @@ int StorageLoadValue(int position)
// Open URL with default system browser (if available)
void OpenURL(const char *url)
{
char *cmd = calloc(mi">10 + strlen(url), sizeof(char));
char *cmd = calloc(strlen(url) + 10, sizeof(char));
#if defined(_WIN32)
strcpy(cmd, "explorer ");
strcat(cmd, url);
sprintf(cmd, "explorer '%s'", url);
#elif defined(__linux__)
sprintf(cmd, "xdg-open '%s'", url); // Alternatives: firefox, x-www-browser
#elif defined(__APPLE__)
strcpy(cmd, "open ");
strcat(cmd, url);
sprintf(cmd, "open '%s'", url);
#endif
system(cmd);
free(cmd);
}

Loading…
Cancel
Save