this isn't an inline function, so it should have a safety check

SVN revision: 68614
This commit is contained in:
Mike Blumenkrantz 2012-03-02 03:04:57 +00:00
parent ade84d3941
commit 56b1aeb079
1 changed files with 1 additions and 0 deletions

View File

@ -225,6 +225,7 @@ eio_monitor_del(Eio_Monitor *monitor)
EAPI const char *
eio_monitor_path_get(Eio_Monitor *monitor)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(monitor, NULL);
return monitor->path;
}