Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5680db4b authored by OGAWA Hirofumi's avatar OGAWA Hirofumi Committed by Linus Torvalds
Browse files

vfat: deduplicate hex2bin()

parent b9fa2ad1
Loading
Loading
Loading
Loading
+12 −23
Original line number Diff line number Diff line
@@ -19,6 +19,8 @@
#include <linux/ctype.h>
#include <linux/slab.h>
#include <linux/namei.h>
#include <linux/kernel.h>

#include "fat.h"

static inline unsigned long vfat_d_version(struct dentry *dentry)
@@ -510,10 +512,8 @@ xlate_to_uni(const unsigned char *name, int len, unsigned char *outname,
	     struct nls_table *nls)
{
	const unsigned char *ip;
	unsigned char nc;
	unsigned char *op;
	unsigned int ec;
	int i, k, fill;
	int i, fill;
	int charlen;

	if (utf8) {
@@ -530,28 +530,17 @@ xlate_to_uni(const unsigned char *name, int len, unsigned char *outname,
			 i < len && *outlen < FAT_LFN_LEN;
			 *outlen += 1) {
			if (escape && (*ip == ':')) {
				u8 uc[2];

				if (i > len - 5)
					return -EINVAL;
				ec = 0;
				for (k = 1; k < 5; k++) {
					nc = ip[k];
					ec <<= 4;
					if (nc >= '0' && nc <= '9') {
						ec |= nc - '0';
						continue;
					}
					if (nc >= 'a' && nc <= 'f') {
						ec |= nc - ('a' - 10);
						continue;
					}
					if (nc >= 'A' && nc <= 'F') {
						ec |= nc - ('A' - 10);
						continue;
					}

				if (hex2bin(uc, ip + 1, 2) < 0)
					return -EINVAL;
				}
				*op++ = ec & 0xFF;
				*op++ = ec >> 8;

				*(wchar_t *)op = uc[0] << 8 | uc[1];

				op += 2;
				ip += 5;
				i += 5;
			} else {