< prev index next >

test/hotspot/gtest/classfile/test_symbolTable.cpp

Print this page

        

@@ -123,11 +123,11 @@
 
     Thread* THREAD = Thread::current();
 
     // Find a symbol where there will probably be only one instance.
     for (int i = 0; i < 100; i++) {
-       snprintf(symbol_name, SYM_NAME_LENGTH, "some_symbol%d", i);
+       sprintf(symbol_name, "some_symbol%d", i);
        TempNewSymbol ts = SymbolTable::new_symbol(symbol_name, CATCH);
        if (ts->refcount() == 1) {
          EXPECT_TRUE(ts->refcount() == 1) << "Symbol is just created";
          break;  // found a unique symbol
        }
< prev index next >