IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9280


Ignore:
Timestamp:
Oct 4, 2006, 4:33:03 PM (20 years ago)
Author:
eugene
Message:

fixed segfault for missing queue key

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/lib.data/queues.c

    r8427 r9280  
    184184
    185185    if (!first) strcat (output, ":");
    186     strcat (output, key);
    187     free (key);
     186    if (key) {
     187        strcat (output, key);
     188        free (key);
     189    }
    188190
    189191    if (q != NULL) p = q + 1;
Note: See TracChangeset for help on using the changeset viewer.