Re: [Live-devel] BasicUsageEnvironment::operator<<(const char *)

2010-03-11 Thread Ross Finlayson
This might sound silly, but when I was debuggind an app I've got a signal being caught because a NULL string had been passed to a BasicUsageEnvironment and the app crashed. I've just added a NULL check to the operator << on my own (if(str == NULL) str = "NULL";). Wouldn't it be of any good if

[Live-devel] BasicUsageEnvironment::operator<<(const char *)

2010-03-11 Thread Paulo Rogério Panhoto
Hello, This might sound silly, but when I was debuggind an app I've got a signal being caught because a NULL string had been passed to a BasicUsageEnvironment and the app crashed. I've just added a NULL check to the operator << on my own (if(str == NULL) str = "NULL";). Wouldn't it be of any good