mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Don't report erroneous /content directory on Android 4.3 and earlier
* src/androidvfs.c (android_content_opendir): Skip two, not one, elements on Android <= 4.4.
This commit is contained in:
parent
36c68e7e34
commit
8bc4292673
1 changed files with 1 additions and 1 deletions
|
|
@ -2813,7 +2813,7 @@ android_content_opendir (struct android_vnode *vnode)
|
|||
/* Android 4.3 and earlier don't support /content/by-authority. */
|
||||
|
||||
if (api < 19)
|
||||
dir->next_name++;
|
||||
dir->next_name += 2;
|
||||
|
||||
/* Link this stream onto the list of all content directory
|
||||
streams. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue