Overview
Comment: | Some exception stuff & withSize -> ofSize for OFObject. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9944a6f8a47959b19054dddc9b09cc07 |
User & Date: | js on 2008-11-01 22:20:33 |
Other Links: | manifest | tags |
Context
2008-11-02
| ||
00:27 | Some fixes for OFObject. check-in: 9ff3dbe9f9 user: js tags: trunk | |
2008-11-01
| ||
22:20 | Some exception stuff & withSize -> ofSize for OFObject. check-in: 9944a6f8a4 user: js tags: trunk | |
21:47 | Allow using [ofobject resizeMem: NULL toSize: size]. check-in: a6b45eec2f user: js tags: trunk | |
Changes
Modified src/OFFile.m from [b1dd678aec] to [6b6d44b5bf].
︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | - + - - - | return symlink(src, dest); } - initWithPath: (const char*)path andMode: (const char*)mode { if ((self = [super init])) { |
︙ | |||
105 106 107 108 109 110 111 | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | - + | - (uint8_t*)readWithSize: (size_t)size andNItems: (size_t)nitems { uint8_t *ret; ret = [self getMemForNItems: nitems |
︙ |
Modified src/OFObject.h from [fe500dfb05] to [d5d3bf61c7].
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | - + | { struct __ofobject_allocated_mem *__mem_pool; } - init; - (void*)getMemWithSize: (size_t)size; - (void*)getMemForNItems: (size_t)nitems |
︙ |
Modified src/OFObject.m from [dfdab0e3f3] to [99a5765c29].
︙ | |||
72 73 74 75 76 77 78 | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | - + - + - - - + - - - + - + - - | __mem_pool = iter; return iter->ptr; } - (void*)getMemForNItems: (size_t)nitems |
︙ | |||
149 150 151 152 153 154 155 | 143 144 145 146 147 148 149 150 151 152 | - - + | return self; } } [[OFMemNotPartOfObjException newWithObject: self andPointer: ptr] raise]; |
Modified src/OFXMLFactory.m from [331396bf91] to [fb863141bc].
︙ | |||
66 67 68 69 70 71 72 | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | - + - - - + - - - + - - - + - - - + - - - + - - | + (char*)escapeCString: (const char*)s { char *ret; size_t i, j, len, nlen; len = nlen = strlen(s); |
︙ | |||
134 135 136 137 138 139 140 | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | - + - - | { char *arg, *val, *xml; size_t i, len; va_list args; /* Start of tag */ len = strlen(name) + 3; |
︙ | |||
168 169 170 171 172 173 174 | 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | - - + - - - + - - | strlen(esc_val) + 1)) { free(esc_val); [[OFNoMemException newWithObject: nil andSize: len + 1 + strlen(arg) + 2 + strlen(esc_val) + 1] raise]; |
︙ | |||
235 236 237 238 239 240 241 | 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | - + - - - | size_t i, len, pos; if (strs[0] == NULL) return NULL; len = strlen(*strs) + 1; |