ObjFW  Diff

Differences From Artifact [dc1b68f1d7]:

To Artifact [836478cdf6]:


146
147
148
149
150
151
152
153
154
155
156
157
158
		} else {
			if OF_UNLIKELY (c >= 0x80 && c <= 0x9F) {
				if (lossy)
					output[i] = '?';
				else
					return false;
			} else
				output[i] = (uint8_t)c;
		}
	}

	return true;
}







|





146
147
148
149
150
151
152
153
154
155
156
157
158
		} else {
			if OF_UNLIKELY (c >= 0x80 && c <= 0x9F) {
				if (lossy)
					output[i] = '?';
				else
					return false;
			} else
				output[i] = (unsigned char)c;
		}
	}

	return true;
}