提交 a8a6cfda 编写于 作者: A alanb

7114611: (fs) DirectoryStream fails with SIGBUS on some embedded platforms, dirent alignment

Reviewed-by: dholmes, alanb
Contributed-by: carlos.lucasius@oracle.com
上级 3d25195f
......@@ -605,9 +605,12 @@ Java_sun_nio_fs_UnixNativeDispatcher_closedir(JNIEnv* env, jclass this, jlong di
JNIEXPORT jbyteArray JNICALL
Java_sun_nio_fs_UnixNativeDispatcher_readdir(JNIEnv* env, jclass this, jlong value) {
char entry[sizeof(struct dirent64) + PATH_MAX + 1];
struct dirent64* ptr = (struct dirent64*)&entry;
struct dirent64* result;
struct {
struct dirent64 buf;
char name_extra[PATH_MAX + 1 - sizeof result->d_name];
} entry;
struct dirent64* ptr = &entry.buf;
int res;
DIR* dirp = jlong_to_ptr(value);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册