On 20 May 2015 at 20:35, Arnd Bergmann arnd@linaro.org wrote:
On Tuesday 19 May 2015 20:50:03 Baolin Wang wrote:
+static inline void cputime_to_timespec(const cputime_t cputime,
struct timespec *value)
+{
struct timespec64 *ts64;
*ts64 = timespec_to_timespec64(*value);
cputime_to_timespec64(cputime, ts64);
Another mistake as before: derferencing an uninitialized pointer.
Arnd
I'll fix that in next patch, thanks.