j
k
j a
j l
+int framer_pm_runtime_get(struct framer *framer) +{ int ret; if (!framer) return 0;
+int framer_pm_runtime_get(struct framer *framer) +{
return 0;
Can framer be a NULL pointer? This sort of test often covers up bugs. So either let it dereference the NULL pointer and opps, or return -EINVAL.
Andrew
Back to the thread
Back to the list