block.c (3753e255da8f6a654c3e7b650a2d27734bec15f9) | block.c (0d54a6fed3ebaf0e17656a712e5d6575c712459b) |
---|---|
1/* 2 * QEMU System Emulator block driver 3 * 4 * Copyright (c) 2003 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 149 unchanged lines hidden (view full) --- 158 const char *p, *p1; 159 int len; 160 161 if (dest_size <= 0) 162 return; 163 if (path_is_absolute(filename)) { 164 pstrcpy(dest, dest_size, filename); 165 } else { | 1/* 2 * QEMU System Emulator block driver 3 * 4 * Copyright (c) 2003 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 149 unchanged lines hidden (view full) --- 158 const char *p, *p1; 159 int len; 160 161 if (dest_size <= 0) 162 return; 163 if (path_is_absolute(filename)) { 164 pstrcpy(dest, dest_size, filename); 165 } else { |
166 p = strchr(base_path, ':'); 167 if (p) 168 p++; 169 else 170 p = base_path; | 166 const char *protocol_stripped = NULL; 167 168 if (path_has_protocol(base_path)) { 169 protocol_stripped = strchr(base_path, ':'); 170 if (protocol_stripped) { 171 protocol_stripped++; 172 } 173 } 174 p = protocol_stripped ?: base_path; 175 |
171 p1 = strrchr(base_path, '/'); 172#ifdef _WIN32 173 { 174 const char *p2; 175 p2 = strrchr(base_path, '\\'); 176 if (!p1 || p2 > p1) 177 p1 = p2; 178 } --- 4713 unchanged lines hidden --- | 176 p1 = strrchr(base_path, '/'); 177#ifdef _WIN32 178 { 179 const char *p2; 180 p2 = strrchr(base_path, '\\'); 181 if (!p1 || p2 > p1) 182 p1 = p2; 183 } --- 4713 unchanged lines hidden --- |