vfs: check userland buffers before reading them.
[haiku.git] / src / libs / bsd / lutimes.c
blobf43bbf8a839fbf1683464a4a2b961604e99df7a0
1 /*
2 * Copyright, 2016-2017 Haiku, Inc. All rights reserved.
3 * Released under the terms of the MIT license.
5 * Authors:
6 * Alexander von Gluck IV, kallisti5@unixzen.com
7 */
10 #include <sys/time.h>
12 #include <OS.h>
15 extern int _utimes(const char* path, const struct timeval times[2],
16 bool traverseLink);
19 int
20 lutimes(const char* path, const struct timeval times[2])
22 return _utimes(path, times, false);