Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit c7b5eef

Browse files
Treehugger RobotGerrit Code Review
authored andcommitted
Merge "Increase the space used by properties filenames" into main
2 parents b1a578a + b497cc9 commit c7b5eef

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libc/system_properties/include/system_properties/properties_filename.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class PropertiesFilename {
4646
const char* c_str() { return filename_; }
4747

4848
private:
49-
// Typically something like "/dev/__properties__/properties_serial".
50-
char filename_[128];
49+
// Typically something like "/dev/__properties__/properties_serial", but can be as long as
50+
// "/data/local/tmp/TemporaryDir-fntJb8/appcompat_override/u:object_r:PROPERTY_NAME_prop:s0"
51+
// when running CTS.
52+
char filename_[256];
5153
};

0 commit comments

Comments
 (0)