this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Protect against setting null values in ASL messages.

authored by

Chris Wulff and committed by
Lubos Dolezel
934893e4 f23bd0bf

+1 -1
+1 -1
src/libSystem/asl/ASLMsg.cpp
··· 25 25 if (op && m_type != ASL_TYPE_QUERY) 26 26 return false; 27 27 28 - MapValue v = { value, op }; 28 + MapValue v = { (value) ? value : "(nil)", op }; 29 29 m_pairs[key] = v; 30 30 return true; 31 31 }