Ticket #38150: patch-src-process_medianthreshold-strdupa.diff

File patch-src-process_medianthreshold-strdupa.diff, 517 bytes (added by FlorianFranzen@…, 11 years ago)
  • src/process_medianthreshold/process_medianthreshold.cpp

    old new  
    193193        } // for i
    194194
    195195        /** Computes threshold for each channel groups */
    196         groups = strdupa (arguments.channelList); // Split groups
     196        groups = strdup (arguments.channelList); // Split groups
    197197        currentGroup = strsep (&groups, GROUP_SEPARATOR); // focus on the first group
    198198
    199199        while(currentGroup != NULL) {