Changeset 1314 for cpp/frams/util/sstring-simple.cpp
- Timestamp:
- 07/11/24 17:22:23 (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/util/sstring-simple.cpp
r1280 r1314 3 3 #include <assert.h> 4 4 #include <common/nonstd_math.h> 5 #include <common/realloc-free0size.h> 5 6 6 7 #ifdef __ANDROID__ … … 52 53 { 53 54 if (newsize == allocated) return; 54 txt = (char*)realloc (txt, newsize);55 txt = (char*)realloc_free0size(txt, newsize); 55 56 allocated = newsize; 56 57 }
Note: See TracChangeset
for help on using the changeset viewer.